Package org.gvt

Source Code of org.gvt.ModelFactory

package org.gvt;

import org.eclipse.gef.requests.CreationFactory;
import org.gvt.model.NodeModel;

/**
* @author Cihan Kucukkececi
*
* Copyright: I-Vis Research Group, Bilkent University, 2007
*/
public class ModelFactory implements CreationFactory {
  private String path;

  public Object getNewObject() {
    NodeModel model = new NodeModel();
    model.setText(path);
    return model;
  }

  public Object getObjectType() {
    return NodeModel.class;
  }

  public void setPath(String s) {
    path = s;
  }
}
TOP

Related Classes of org.gvt.ModelFactory

TOP
Copyright © 2018 www.massapi.com. 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.