View Javadoc
1   package fr.paris.lutece.plugins.directory.modules.exportfile.business;
2   
3   public class FileName
4   {
5   
6       private int _nMappingEntry;
7   
8       private String _strAttribute;
9   
10      private int _nNumberChar;
11  
12      private int _nOrder;
13  
14      /**
15       * Returns the MappingEntry
16       * 
17       * @return The MappingEntry
18       */
19      public int getMappingEntry( )
20      {
21          return _nMappingEntry;
22      }
23  
24      /**
25       * Sets the MappingEntry
26       * 
27       * @param nId
28       *            The MappingEntry
29       */
30      public void setMappingEntry( int MappingEntry )
31      {
32          _nMappingEntry = MappingEntry;
33      }
34  
35      /**
36       * Returns the Attribute
37       * 
38       * @return The Attribute
39       */
40      public String getAttribute( )
41      {
42          return _strAttribute;
43      }
44  
45      /**
46       * Sets the Attribute
47       * 
48       * @param Attribute
49       *            The Attribute
50       */
51      public void setAttribute( String strAttribute )
52      {
53          _strAttribute = strAttribute;
54      }
55  
56      /**
57       * Returns the NumberChar
58       * 
59       * @return The NumberChar
60       */
61      public int getNumberChar( )
62      {
63          return _nNumberChar;
64      }
65  
66      /**
67       * Sets the NumberChar
68       * 
69       * @param NumberChar
70       *            The NumberChar
71       */
72      public void setNumberChar( int nNumberChar )
73      {
74          _nNumberChar = nNumberChar;
75      }
76  
77      /**
78       * Returns the Order
79       * 
80       * @return The Order
81       */
82      public int getOrder( )
83      {
84          return _nOrder;
85      }
86  
87      /**
88       * Sets the Order
89       * 
90       * @param Order
91       *            The Order
92       */
93      public void setOrder( int nOrder )
94      {
95          _nOrder = nOrder;
96      }
97  
98  }