comparison WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/extensions/ElementExtensible.java @ 0:d5cd409b8a18 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author ganjoo
date Tue, 07 Jun 2011 18:00:50 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d5cd409b8a18
1 /*
2 * (c) Copyright IBM Corp 2004, 2005
3 */
4
5 package javax.wadls.extensions;
6
7 import java.util.*;
8
9 import javax.wadls.extensions.ExtensibilityElement;
10
11 /**
12 * Classes that implement this interface can contain extensibility
13 * elements.
14 *
15 * @author John Kaputin
16 */
17 public interface ElementExtensible {
18
19 /**
20 * Add an extensibility element.
21 *
22 * @param extElement the extensibility element to be added
23 */
24 public void addExtensibilityElement(ExtensibilityElement extElement);
25
26 /**
27 * Get all the extensibility elements defined here.
28 */
29 public List getExtensibilityElements();
30
31
32 }