KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > retailproconvert > Style


1 /*
2  * Created on Oct 4, 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Generation - Code and Comments
6  */

7 package com.openedit.store.retailproconvert;
8
9
10 public class Style
11 {
12     protected String JavaDoc id;
13     protected int fieldOrdering;
14     /**
15      * @return Returns the sID.
16      */

17     public String JavaDoc getId()
18     {
19         return id;
20     }
21     /**
22      * @param sid The sID to set.
23      */

24     public void setId( String JavaDoc sid )
25     {
26         id = sid;
27     }
28     public int getOrdering()
29     {
30         return fieldOrdering;
31     }
32     public void setOrdering(int inOrdering)
33     {
34         fieldOrdering = inOrdering;
35     }
36 }
Popular Tags