All Downloads are FREE. Search and download functionalities are using the official Maven repository.

NpsSDK.BaseElement Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package NpsSDK;

import java.util.List;

public abstract class BaseElement
{		
	 
    //protected BaseElement(String name) { this.name = name; }    
    
    private String name;
    String getName() {
    	return this.name;
    }
    void setName(String name){
    	this.name = name;
    }  
    public abstract String serialize();
    abstract List getChildren();
    
    abstract String getConcatenatedValues(); 
    
    
    
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy