646566676869707172
/** * create Test Element */ public TestElement createTestElement() { log.debug("XMLSchemaAssertionGui.createTestElement() called"); XMLSchemaAssertion el = new XMLSchemaAssertion(); modifyTestElement(el); return el; }
100101102103104105106107
* the test element (should be XMLSchemaAssertion) */ @Override public void configure(TestElement el) { super.configure(el); XMLSchemaAssertion assertion = (XMLSchemaAssertion) el; xmlSchema.setText(assertion.getXsdFileName()); }
666768697071727374
* create Test Element */ @Override public TestElement createTestElement() { log.debug("XMLSchemaAssertionGui.createTestElement() called"); XMLSchemaAssertion el = new XMLSchemaAssertion(); modifyTestElement(el); return el; }
103104105106107108109110
626364656667686970
96979899100101102103
* @param el - * the test element (should be XMLSchemaAssertion) */ public void configure(TestElement el) { super.configure(el); XMLSchemaAssertion assertion = (XMLSchemaAssertion) el; xmlSchema.setText(assertion.getXsdFileName()); }
616263646566676869
8687888990919293