src/include/common/syncml/core/ContentTypeParameter.h

00001 /*
00002  * Copyright (C) 2003-2007 Funambol
00003  *
00004  * This program is free software; you can redistribute it and/or modify
00005  * it under the terms of the GNU General Public License as published by
00006  * the Free Software Foundation; either version 2 of the License, or
00007  * (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software
00016  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00017  */
00018 
00019 
00020 #ifndef INCL_CONTENT_TYPE_PARAMETER
00021 #define INCL_CONTENT_TYPE_PARAMETER
00022 
00024 #include "base/fscapi.h"
00025 #include "base/util/ArrayList.h"
00026 #include "syncml/core/StringElement.h"
00027 
00028 class ContentTypeParameter : public ArrayElement {
00029     
00030      // ------------------------------------------------------------ Private data
00031     private:
00032         char*    paramName;
00033         ArrayList* valEnum;   //String[]
00034         char*    displayName;
00035         char*    dataType;
00036         int size;
00037     
00038     // ---------------------------------------------------------- Protected data    
00039     public:
00040         
00041         ContentTypeParameter();
00042         ~ContentTypeParameter();
00043 
00056         ContentTypeParameter(char*  paramName,
00057                              ArrayList* valEnum, 
00058                              char*  displayName);
00059 
00074         ContentTypeParameter(char*  paramName,
00075                              char*  dataType,
00076                              int size,
00077                              char*  displayName);
00078 
00079         
00085         const char* getParamName();
00086     
00092         void setParamName(const char* paramName);
00093     
00099         ArrayList* getValEnum();
00100     
00106         void setValEnum(ArrayList* valEnum);
00107     
00113         const char* getDisplayName();
00114     
00121         void setDisplayName(const char* displayName);
00122     
00128         const char* getDataType();
00129     
00136         void setDataType(const char* dataType);
00137     
00143         int getSize();
00144     
00151         void setSize(int size);
00152 
00153         ArrayElement* clone();
00154    
00155 };
00156 
00158 #endif

Generated on Fri Apr 27 12:29:19 2007 for Funambol C++ Client Library by  doxygen 1.5.2