1 package org.opencrx.kernel.model1.cci; 14 15 public interface Class 16 extends 17 org.opencrx.kernel.model1.cci.Classifier { 18 28 public org.opencrx.kernel.model1.cci.EditableAttribute getAttribute( 29 String id 30 ); 31 32 41 public java.util.Collection getAttribute( 42 ); 43 44 51 public java.util.List getAttribute( 52 org.opencrx.kernel.model1.cci.EditableAttributeFilter filter 53 ); 54 55 63 public void addAttribute ( 64 String id, 65 org.opencrx.kernel.model1.cci.EditableAttribute newValue 66 ); 67 68 75 public void addAttribute ( 76 org.opencrx.kernel.model1.cci.EditableAttribute newValue 77 ); 78 79 85 public void removeAttribute ( 86 String id 87 ); 88 96 public boolean isSingleton( 97 ); 98 99 107 public void setSingleton( 108 boolean newValue 109 ); 110 111 121 public org.opencrx.kernel.model1.cci.EditableOperation getOperation( 122 String id 123 ); 124 125 134 public java.util.Collection getOperation( 135 ); 136 137 144 public java.util.List getOperation( 145 org.opencrx.kernel.model1.cci.EditableOperationFilter filter 146 ); 147 148 156 public void addOperation ( 157 String id, 158 org.opencrx.kernel.model1.cci.EditableOperation newValue 159 ); 160 161 168 public void addOperation ( 169 org.opencrx.kernel.model1.cci.EditableOperation newValue 170 ); 171 172 178 public void removeOperation ( 179 String id 180 ); 181 } 185 | Popular Tags |