fr.cnes.sitools.project.modules.model
Class ProjectModuleModel

java.lang.Object
  extended by fr.cnes.sitools.project.modules.model.ProjectModuleModel
All Implemented Interfaces:
IResource

public final class ProjectModuleModel
extends java.lang.Object
implements IResource

Class for client module description

Author:
AKKA Technologies

Constructor Summary
ProjectModuleModel()
          Basic Constructor
 
Method Summary
 java.lang.String getAuthor()
          Gets the author value
 int getDefaultHeight()
          Gets the defaultHeight value
 int getDefaultWidth()
          Gets the defaultWidth value
 Dependencies getDependencies()
          Gets the dependencies value
 java.lang.String getDescription()
          Gets the description value
 java.lang.String getIcon()
          Gets the icon value
 java.lang.String getId()
          Resource identifier
 java.lang.String getImagePath()
          Gets the imagePath value
 java.lang.String getLabel()
          Gets the label value
 java.util.List<Role> getListRoles()
          Gets the listRoles value
 java.lang.String getName()
          Gets the name value
 java.lang.Integer getPriority()
          Gets the priority value
 java.lang.Boolean getPublicOpened()
          Deprecated. 
 java.lang.String getSpecificType()
          Gets the specificType value
 java.lang.String getTitle()
          Gets the title value
 java.lang.String getUrl()
          Gets the url value
 java.lang.String getVersion()
          Gets the version value
 java.lang.Boolean getVisible()
          Gets the visible value
 int getX()
          Gets the x value
 java.lang.String getXtype()
          Gets the xtype value
 int getY()
          Gets the y value
 void setAuthor(java.lang.String author)
          Sets the value of author
 void setDefaultHeight(int defaultHeight)
          Sets the value of defaultHeight
 void setDefaultWidth(int defaultWidth)
          Sets the value of defaultWidth
 void setDependencies(Dependencies dependencies)
          Sets the value of dependencies
 void setDescription(java.lang.String description)
          Sets the value of description
 void setIcon(java.lang.String icon)
          Sets the value of icon
 void setId(java.lang.String id)
          Resource identifier setting
 void setImagePath(java.lang.String imagePath)
          Sets the value of imagePath
 void setLabel(java.lang.String label)
          Sets the value of label
 void setListRoles(java.util.List<Role> listRoles)
          Sets the value of listRoles
 void setName(java.lang.String name)
          Sets the value of name
 void setPriority(java.lang.Integer priority)
          Sets the value of priority
 void setPublicOpened(java.lang.Boolean publicOpened)
          Deprecated. 
 void setSpecificType(java.lang.String specificType)
          Sets the value of specificType
 void setTitle(java.lang.String title)
          Sets the value of title
 void setUrl(java.lang.String url)
          Sets the value of url
 void setVersion(java.lang.String version)
          Sets the value of version
 void setVisible(java.lang.Boolean visible)
          Sets the value of visible
 void setX(int x)
          Sets the value of x
 void setXtype(java.lang.String xtype)
          Sets the value of xtype
 void setY(int y)
          Sets the value of y
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProjectModuleModel

public ProjectModuleModel()
Basic Constructor

Method Detail

getId

public java.lang.String getId()
Description copied from interface: IResource
Resource identifier

Specified by:
getId in interface IResource
Returns:
String

setId

public void setId(java.lang.String id)
Description copied from interface: IResource
Resource identifier setting

Specified by:
setId in interface IResource
Parameters:
id - the identifier to set

getName

public java.lang.String getName()
Gets the name value

Specified by:
getName in interface IResource
Returns:
the name

setName

public void setName(java.lang.String name)
Sets the value of name

Parameters:
name - the name to set

getDescription

public java.lang.String getDescription()
Gets the description value

Specified by:
getDescription in interface IResource
Returns:
the description

setDescription

public void setDescription(java.lang.String description)
Sets the value of description

Parameters:
description - the description to set

getUrl

public java.lang.String getUrl()
Gets the url value

Returns:
the url

setUrl

public void setUrl(java.lang.String url)
Sets the value of url

Parameters:
url - the url to set

getPriority

public java.lang.Integer getPriority()
Gets the priority value

Returns:
the priority

setPriority

public void setPriority(java.lang.Integer priority)
Sets the value of priority

Parameters:
priority - the priority to set

getAuthor

public java.lang.String getAuthor()
Gets the author value

Returns:
the author

setAuthor

public void setAuthor(java.lang.String author)
Sets the value of author

Parameters:
author - the author to set

getVersion

public java.lang.String getVersion()
Gets the version value

Returns:
the version

setVersion

public void setVersion(java.lang.String version)
Sets the value of version

Parameters:
version - the version to set

getDefaultWidth

public int getDefaultWidth()
Gets the defaultWidth value

Returns:
the defaultWidth

setDefaultWidth

public void setDefaultWidth(int defaultWidth)
Sets the value of defaultWidth

Parameters:
defaultWidth - the defaultWidth to set

getDefaultHeight

public int getDefaultHeight()
Gets the defaultHeight value

Returns:
the defaultHeight

setDefaultHeight

public void setDefaultHeight(int defaultHeight)
Sets the value of defaultHeight

Parameters:
defaultHeight - the defaultHeight to set

getX

public int getX()
Gets the x value

Returns:
the x

setX

public void setX(int x)
Sets the value of x

Parameters:
x - the x to set

getY

public int getY()
Gets the y value

Returns:
the y

setY

public void setY(int y)
Sets the value of y

Parameters:
y - the y to set

getXtype

public java.lang.String getXtype()
Gets the xtype value

Returns:
the xtype

setXtype

public void setXtype(java.lang.String xtype)
Sets the value of xtype

Parameters:
xtype - the xtype to set

setDependencies

public void setDependencies(Dependencies dependencies)
Sets the value of dependencies

Parameters:
dependencies - the dependencies to set

getDependencies

public Dependencies getDependencies()
Gets the dependencies value

Returns:
the dependencies

getImagePath

public java.lang.String getImagePath()
Gets the imagePath value

Returns:
the imagePath

setImagePath

public void setImagePath(java.lang.String imagePath)
Sets the value of imagePath

Parameters:
imagePath - the imagePath to set

getTitle

public java.lang.String getTitle()
Gets the title value

Returns:
the title

setTitle

public void setTitle(java.lang.String title)
Sets the value of title

Parameters:
title - the title to set

getIcon

public java.lang.String getIcon()
Gets the icon value

Returns:
the icon

setIcon

public void setIcon(java.lang.String icon)
Sets the value of icon

Parameters:
icon - the icon to set

getSpecificType

public java.lang.String getSpecificType()
Gets the specificType value

Returns:
the specificType

setSpecificType

public void setSpecificType(java.lang.String specificType)
Sets the value of specificType

Parameters:
specificType - the specificType to set

getVisible

public java.lang.Boolean getVisible()
Gets the visible value

Returns:
the visible

setVisible

public void setVisible(java.lang.Boolean visible)
Sets the value of visible

Parameters:
visible - the visible to set

getPublicOpened

@Deprecated
public java.lang.Boolean getPublicOpened()
Deprecated. 

Gets the publicOpened value

Returns:
the publicOpened

setPublicOpened

@Deprecated
public void setPublicOpened(java.lang.Boolean publicOpened)
Deprecated. 

Sets the value of publicOpened

Parameters:
publicOpened - the publicOpened to set

getListRoles

public java.util.List<Role> getListRoles()
Gets the listRoles value

Returns:
the listRoles

setListRoles

public void setListRoles(java.util.List<Role> listRoles)
Sets the value of listRoles

Parameters:
listRoles - the listRoles to set

getLabel

public java.lang.String getLabel()
Gets the label value

Returns:
the label

setLabel

public void setLabel(java.lang.String label)
Sets the value of label

Parameters:
label - the label to set


Copyright © 2010-2013 CNES. All Rights Reserved.