KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > mondrian > script > ScriptColumn


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  */

11 package com.tonbeller.jpivot.mondrian.script;
12
13 /**
14  * @author Engineering Ingegneria Informatica S.p.A. - Luca Barozzi
15  */

16 public class ScriptColumn {
17   private String JavaDoc title;
18   private int position;
19   private String JavaDoc file;
20
21   public ScriptColumn() {
22   }
23
24   public String JavaDoc getFile() {
25     return file;
26   }
27
28   public void setFile(String JavaDoc file) {
29     this.file = file;
30   }
31
32   public int getPosition() {
33     return position;
34   }
35
36   public void setPosition(int position) {
37     this.position = position;
38   }
39
40   public String JavaDoc getTitle() {
41     return title;
42   }
43
44   public void setTitle(String JavaDoc title) {
45     this.title = title;
46   }
47
48 }
49
Popular Tags