1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   * 
13   */
14  
15  package com.liferay.portal.model;
16  
17  import java.io.Serializable;
18  
19  /**
20   * <a href="LayoutModel.java.html"><b><i>View Source</i></b></a>
21   *
22   * <p>
23   * ServiceBuilder generated this class. Modifications in this class will be
24   * overwritten the next time is generated.
25   * </p>
26   *
27   * <p>
28   * This interface is a model that represents the Layout table in the
29   * database.
30   * </p>
31   *
32   * @author    Brian Wing Shun Chan
33   * @see       Layout
34   * @see       com.liferay.portal.model.impl.LayoutImpl
35   * @see       com.liferay.portal.model.impl.LayoutModelImpl
36   * @generated
37   */
38  public interface LayoutModel extends BaseModel<Layout> {
39      public long getPrimaryKey();
40  
41      public void setPrimaryKey(long pk);
42  
43      public long getPlid();
44  
45      public void setPlid(long plid);
46  
47      public long getGroupId();
48  
49      public void setGroupId(long groupId);
50  
51      public long getCompanyId();
52  
53      public void setCompanyId(long companyId);
54  
55      public boolean getPrivateLayout();
56  
57      public boolean isPrivateLayout();
58  
59      public void setPrivateLayout(boolean privateLayout);
60  
61      public long getLayoutId();
62  
63      public void setLayoutId(long layoutId);
64  
65      public long getParentLayoutId();
66  
67      public void setParentLayoutId(long parentLayoutId);
68  
69      public String getName();
70  
71      public void setName(String name);
72  
73      public String getTitle();
74  
75      public void setTitle(String title);
76  
77      public String getDescription();
78  
79      public void setDescription(String description);
80  
81      public String getType();
82  
83      public void setType(String type);
84  
85      public String getTypeSettings();
86  
87      public void setTypeSettings(String typeSettings);
88  
89      public boolean getHidden();
90  
91      public boolean isHidden();
92  
93      public void setHidden(boolean hidden);
94  
95      public String getFriendlyURL();
96  
97      public void setFriendlyURL(String friendlyURL);
98  
99      public boolean getIconImage();
100 
101     public boolean isIconImage();
102 
103     public void setIconImage(boolean iconImage);
104 
105     public long getIconImageId();
106 
107     public void setIconImageId(long iconImageId);
108 
109     public String getThemeId();
110 
111     public void setThemeId(String themeId);
112 
113     public String getColorSchemeId();
114 
115     public void setColorSchemeId(String colorSchemeId);
116 
117     public String getWapThemeId();
118 
119     public void setWapThemeId(String wapThemeId);
120 
121     public String getWapColorSchemeId();
122 
123     public void setWapColorSchemeId(String wapColorSchemeId);
124 
125     public String getCss();
126 
127     public void setCss(String css);
128 
129     public int getPriority();
130 
131     public void setPriority(int priority);
132 
133     public long getDlFolderId();
134 
135     public void setDlFolderId(long dlFolderId);
136 
137     public Layout toEscapedModel();
138 
139     public boolean isNew();
140 
141     public boolean setNew(boolean n);
142 
143     public boolean isCachedModel();
144 
145     public void setCachedModel(boolean cachedModel);
146 
147     public boolean isEscapedModel();
148 
149     public void setEscapedModel(boolean escapedModel);
150 
151     public Serializable getPrimaryKeyObj();
152 
153     public Object clone();
154 
155     public int compareTo(Layout layout);
156 
157     public int hashCode();
158 
159     public String toString();
160 
161     public String toXmlString();
162 }