1
2
3
4
5
6
7
8
9 package net.sf.jour.config;
10
11
12 /***
13 * Java content class for anonymous complex type.
14 * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/work/java/jour/jour_pg/src/resources/jour.xsd line 23)
15 * <p>
16 * <pre>
17 * <complexType>
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <attribute name="expr" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
21 * </restriction>
22 * </complexContent>
23 * </complexType>
24 * </pre>
25 *
26 */
27 public interface PointcutType {
28
29
30 /***
31 * Gets the value of the expr property.
32 *
33 * @return
34 * possible object is
35 * {@link java.lang.String}
36 */
37 java.lang.String getExpr();
38
39 /***
40 * Sets the value of the expr property.
41 *
42 * @param value
43 * allowed object is
44 * {@link java.lang.String}
45 */
46 void setExpr(java.lang.String value);
47
48 }