Changeset 27 for branches/t3e-tools
- Timestamp:
- 09/24/10 12:13:49 (14 years ago)
- Location:
- branches/t3e-tools/t3q/src/org/etsi/t3q/config
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/t3e-tools/t3q/src/org/etsi/t3q/config/NamingConventionsConfig.java
r7 r27 16 16 private String signatureTemplateRegExp = "s_[a-z].*"; 17 17 private String portInstanceRegExp = "[a-z].*"; 18 private String messagePortInstanceRegExp = "mp_.*"; 19 private String streamPortInstanceRegExp = "sp_.*"; 18 20 private String componentInstanceRegExp = "[a-z].*"; 19 21 private String constantRegExp = "c_[a-z].*"; … … 266 268 } 267 269 270 public void setMessagePortInstanceRegExp(String messagePortInstanceRegExp) { 271 this.messagePortInstanceRegExp = messagePortInstanceRegExp; 272 } 273 274 public String getMessagePortInstanceRegExp() { 275 return messagePortInstanceRegExp; 276 } 277 278 public void setStreamPortInstanceRegExp(String streamPortInstanceRegExp) { 279 this.streamPortInstanceRegExp = streamPortInstanceRegExp; 280 } 281 282 public String getStreamPortInstanceRegExp() { 283 return streamPortInstanceRegExp; 284 } 285 268 286 } -
branches/t3e-tools/t3q/src/org/etsi/t3q/config/QualityCheckProfile.java
r16 r27 73 73 74 74 private RealtimeExtensionConfig realtimeExtensionConfig = new RealtimeExtensionConfig(); 75 private EmbeddedExtensionConfig embeddedExtensionConfig = new EmbeddedExtensionConfig(); 75 76 76 77 public RealtimeExtensionConfig getRealtimeExtensionConfig() { … … 547 548 } 548 549 550 public void setEmbeddedExtensionConfig(EmbeddedExtensionConfig embeddedExtensionConfig) { 551 this.embeddedExtensionConfig = embeddedExtensionConfig; 552 } 553 554 public EmbeddedExtensionConfig getEmbeddedExtensionConfig() { 555 return embeddedExtensionConfig; 556 } 557 549 558 550 559 }
Note: See TracChangeset
for help on using the changeset viewer.