Package org.jamesii.core.base

Examples of org.jamesii.core.base.InformationObject


   * @param theIdent
   *          identification
   * @return information on the object associated with the given identifier
   */
  public String getInformation(String theIdent) {
    InformationObject io = informationObjects.get(theIdent);
    if (io == null) {
      return "No information about " + theIdent + " available!!";
    }
    return io.getInfo();

  }
View Full Code Here

TOP

Related Classes of org.jamesii.core.base.InformationObject

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.