FlowElement.java :  » Workflow-Engines » OpenWFE » org » openwfe » gpe » model » Java Open Source

Java Open Source » Workflow Engines » OpenWFE 
OpenWFE » org » openwfe » gpe » model » FlowElement.java
package org.openwfe.gpe.model;


public class FlowElement
  extends AbstractFlow
{

private String name = "FlowElement";


public FlowElement() {}
public FlowElement(String s) {
  setName(s);
}

public String getName() {
  return name;
}


public void setName(String s) {
  name = s;
}

public String toString(){
  String className = getClass().getName();
  className = className.substring(className.lastIndexOf('.') + 1);
  return className;
}

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.