KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > util > IvyPattern


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package fr.jayasoft.ivy.util;
7
8 /**
9  * @author x.hanin
10  *
11  */

12 public class IvyPattern {
13     private String JavaDoc _pattern;
14
15     public String JavaDoc getPattern() {
16         return _pattern;
17     }
18
19     public void setPattern(String JavaDoc pattern) {
20         _pattern = pattern;
21     }
22 }
23
Popular Tags