Package org.springframework.erlang.core

Examples of org.springframework.erlang.core.Application


      for (OtpErlangObject appDescription : appList) {
        OtpErlangTuple appDescriptionTuple = (OtpErlangTuple) appDescription;
        String name = appDescriptionTuple.elementAt(0).toString();
        String description = appDescriptionTuple.elementAt(1).toString();
        String version = appDescriptionTuple.elementAt(2).toString();
        applications.add(new Application(name, description, version));
      }
    }
View Full Code Here

TOP

Related Classes of org.springframework.erlang.core.Application

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.