Mercurial > repos > ganjoo > webservice_toolsuite
comparison WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/Effect.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 package javax.wadls; | |
2 | |
3 import org.w3c.dom.*; | |
4 | |
5 | |
6 /** | |
7 * This interface represents an effect. | |
8 * | |
9 * @author Zixin Wu | |
10 */ | |
11 public interface Effect extends java.io.Serializable, ModelReferenceExtensible | |
12 { | |
13 /** | |
14 * Set the name of this effect. | |
15 * | |
16 * @param name the desired name | |
17 */ | |
18 public void setName(String name); | |
19 | |
20 /** | |
21 * Get the name of this effect. | |
22 * | |
23 * @return the effect name | |
24 */ | |
25 public String getName(); | |
26 | |
27 /** | |
28 * Set the expression of this effect. | |
29 * | |
30 * @param expression The desired expression. | |
31 */ | |
32 public void setExpression(String expression); | |
33 | |
34 /** | |
35 * Get the expression of this effect. | |
36 * | |
37 * @return The expression. | |
38 */ | |
39 public String getExpression(); | |
40 | |
41 /** | |
42 * Set the documentation element for this document. This dependency | |
43 * on org.w3c.dom.Element should eventually be removed when a more | |
44 * appropriate way of representing this information is employed. | |
45 * | |
46 * @param docEl the documentation element | |
47 */ | |
48 public void setDocumentationElement(Element docEl); | |
49 | |
50 /** | |
51 * Get the documentation element. This dependency on org.w3c.dom.Element | |
52 * should eventually be removed when a more appropriate way of | |
53 * representing this information is employed. | |
54 * | |
55 * @return the documentation element | |
56 */ | |
57 public Element getDocumentationElement(); | |
58 | |
59 } |