![]() |
|||
DimensionTable.javaGo to the documentation of this file.00001 /* 00002 * DimensionTable.java 00003 * 00004 * Copyright (C) 2003 Alain MENSEGUEN 00005 * www.net2map.org 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU General Public License 00009 * as published by the Free Software Foundation; either version 2 00010 * of the License, or (at your option) any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, write to the Free Software 00019 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00020 */ 00021 package org.net2map.pov.server; 00022 00023 public class DimensionTable extends java.lang.Object 00024 { 00025 00027 public DimensionTable( String name, String value ) 00028 { 00029 sName = name; 00030 sValue = value; 00031 } 00032 00033 public String getName() 00034 { 00035 return sName; 00036 } 00037 00038 public String getValue() 00039 { 00040 return sValue; 00041 } 00042 00043 public void setName( String name ) 00044 { 00045 sName = name; 00046 } 00047 00048 public void setValue( String value ) 00049 { 00050 sValue = value; 00051 } 00052 00053 private String sName; 00054 private String sValue; 00055 } |
|||
|
Accueil | Téléchargement | Manuel
| Doc. technique | Sources CVS |
Faq | Nous contacter
©2003 - All Rights Reserved |
|||