View Javadoc
1 package com.bonevich.erj.mof.interfaces.model; 2 3 public interface ModelElement extends javax.jmi.reflect.RefObject 4 { 5 // attribute : name 6 public String getName(); 7 public void setName(String newValue); 8 // attribute : identifier 9 public String getIdentifier(); 10 public void setIdentifier(String newValue); 11 // attribute : description 12 public String getDescription(); 13 public void setDescription(String newValue); 14 }

This page was automatically generated by Maven