Package de.innovationgate.wga.model

Examples of de.innovationgate.wga.model.DesignMetadataInfo


 
  protected DesignMetadataInfo _info;
  private int _headerLines;
   
    public DesignMetadata() {
      _info = new DesignMetadataInfo();
    }
View Full Code Here


    public DesignMetadata() {
      _info = new DesignMetadataInfo();
    }
   
    public DesignMetadata(WGDesignDocument doc) throws WGAPIException {
      _info = new DesignMetadataInfo();
        setDescription(doc.getDescription());
    }
View Full Code Here

        if (metaXML.trim().equals("")) {
            createMetadataFile(metadataFile);
            metaData = createDefaultMetadata();
        }
        else {
          DesignMetadataInfo info =(DesignMetadataInfo) DesignSyncManager.getXstream().fromXML(metaXML);
          if (info instanceof TMLMetadataInfo) {
            metaData = new TMLMetadata();           
          } else if (info instanceof FCMetadataInfo) {
            metaData = new FCMetadata();
          } else if (info instanceof ScriptMetadataInfo) {
View Full Code Here

TOP

Related Classes of de.innovationgate.wga.model.DesignMetadataInfo

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.