Changeset 2962
- Timestamp:
- Nov 27, 2006, 3:02:39 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 173 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r2959 r2962 129 129 name="dist" 130 130 depends="clean,dist.init,core.jar,coreplugins.jar,web.jar,installprg.jar, 131 jobagent.jar,migrate.jar,copy.config,copy.jar,doc .dist"131 jobagent.jar,migrate.jar,copy.config,copy.jar,doc,doc.dist" 132 132 description="Create everything needed for distribution" 133 133 > … … 141 141 <copy todir="${dist}/bin" description="Scripts, etc."> 142 142 <fileset dir="bin" /> 143 </copy> 144 <copy todir="${dist}" description="License and creadits"> 145 <fileset file="base2.license.txt" /> 146 <fileset file="credits.txt" /> 143 147 </copy> 144 148 </target> … … 960 964 <fileset dir="doc" includes="development/**/*" /> 961 965 <fileset dir="doc" includes="licenses/**/*" /> 966 <fileset dir="doc" includes="specifications/**/*" /> 962 967 <fileset dir="doc" includes="user/**/*" /> 963 <fileset dir="doc" includes="*.*" excludes="index.html"/>968 <fileset dir="doc" includes="*.*" /> 964 969 </copy> 965 970 </target> -
trunk/doc/admin/base.config.html
r2936 r2962 79 79 <li><code>org.hibernate.dialect.PostgreSQLDialect</code> for Postgres</li> 80 80 </ul> 81 Other dialects may w irk but are not supported.81 Other dialects may work but are not supported. 82 82 </dd> 83 83 -
trunk/doc/admin/extended-properties.html
r2959 r2962 190 190 A more detailed information about the attributes is available in 191 191 the <a 192 href="../api/ develop/net/sf/basedb/core/data/ExtendableData.html">javadoc192 href="../api/net/sf/basedb/core/data/ExtendableData.html">javadoc 193 193 for the ExtendableData class</a>. 194 194 </p> -
trunk/doc/admin/jobagent.html
r2648 r2962 127 127 as job agents. The setting <code>jobqueue.internal.enabled</code> 128 128 should be changed to <code>false</code> for the web server. This setting 129 is found in the <code>www/WEB-INF/classes/base.config .file</code>. After129 is found in the <code>www/WEB-INF/classes/base.config</code> file. After 130 130 you have changed the setting the web server must be restarted. 131 131 </dd> … … 192 192 <dt>3. Edit the <code>jobagent.properties</code> file</dt> 193 193 <dd> 194 The <code> bin/jobagent.properties</code> file contains settings for194 The <code>www/WEB-INF/classes/jobagent.properties</code> file contains settings for 195 195 the job agent. The most important ones to specify value for are: 196 196 -
trunk/doc/development/coding/batch/index.html
r2304 r2962 55 55 <b>See also</b> 56 56 <ul> 57 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>57 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 58 58 <li><a href="../../overview/core/index.html">An overview of the core API</a> 59 59 </ul> -
trunk/doc/development/coding/data/index.html
r2304 r2962 82 82 <li><a href="AnyData.txt">AnyData.txt - a template class file for <code>CommonData</code> object</a> 83 83 <li><a href="ChildData.txt">ChildData.txt - a template class file for child items</a> 84 <li><a href="../../../api/ develop/net/sf/basedb/core/data/package-summary.html">Javadoc for the net.sf.basedb.core.data package</a>84 <li><a href="../../../api/net/sf/basedb/core/data/package-summary.html">Javadoc for the net.sf.basedb.core.data package</a> 85 85 <li><a href="../../overview/data/index.html">An overview of the database schema and data layer API</a> 86 86 </ul> -
trunk/doc/development/coding/item/index.html
r2898 r2962 84 84 <li><a href="../../overview/core/datavalidation.html">Core API overview - Data validation</a> 85 85 <li><a href="../../overview/core/transactions.html">Core API overview - Transaction handling</a> 86 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>86 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 87 87 </ul> 88 88 </p> -
trunk/doc/development/index.html
r2959 r2962 46 46 <ol> 47 47 <li><a href="#startingpoints">Where to start</a> 48 <li><a href=" api/index.html">API Javadoc</a>48 <li><a href="../api/index.html">API Javadoc</a> 49 49 <li><a href="#specifications">Specifications</a> 50 50 <li><a href="#overview">Implementation overview</a> … … 75 75 76 76 <p> 77 <a href=" api/index.html">API Javadoc is here.</a>77 <a href="../api/index.html">API Javadoc is here.</a> 78 78 </p> 79 79 -
trunk/doc/development/overview/core/accesspermissions.html
r2304 r2962 79 79 80 80 <p> 81 The <code>Keyring</code> [<a href="../../../api/ develop/net/sf/basedb/core/Keyring.html">API</a>]81 The <code>Keyring</code> [<a href="../../../api/net/sf/basedb/core/Keyring.html">API</a>] 82 82 class is the core class that is responsible 83 83 for handling most permission checks in BASE. A keyring object … … 88 88 <ul> 89 89 <li>Which roles the user is a member of and the permissions granted to those roles 90 (RoleKey [<a href="../../../api/ develop/net/sf/basedb/core/RoleKey.html">API</a>])90 (RoleKey [<a href="../../../api/net/sf/basedb/core/RoleKey.html">API</a>]) 91 91 <li>Which groups the user is a member of, including following groups-within-groups, 92 92 and the permissions granted to those groups (ItemKey 93 [<a href="../../../api/ develop/net/sf/basedb/core/ItemKey.html">API</a>])93 [<a href="../../../api/net/sf/basedb/core/ItemKey.html">API</a>]) 94 94 <li>The permissions granted to the user directly (ItemKey) 95 95 <li>If a project is active, the permissions within that project (ProjectKey 96 [<a href="../../../api/ develop/net/sf/basedb/core/ProjectKey.html">API</a>])97 <li>Which <code>Project</code>:s [<a href="../../../api/ develop/net/sf/basedb/core/Project.html">API</a>]96 [<a href="../../../api/net/sf/basedb/core/ProjectKey.html">API</a>]) 97 <li>Which <code>Project</code>:s [<a href="../../../api/net/sf/basedb/core/Project.html">API</a>] 98 98 the user has access to 99 99 <li>Which other users are members of at least one of the groups the logged in … … 122 122 123 123 <p> 124 The <code>Permission</code> [<a href="../../../api/ develop/net/sf/basedb/core/Permission.html">API</a>]124 The <code>Permission</code> [<a href="../../../api/net/sf/basedb/core/Permission.html">API</a>] 125 125 enumeration defines the permissions available in BASE. 126 126 Each permission is represented by an integer value (<code>grantValue()</code>) … … 151 151 152 152 <p> 153 Each <code>BasicItem</code> [<a href="../../../api/ develop/net/sf/basedb/core/BasicItem.html">API</a>]153 Each <code>BasicItem</code> [<a href="../../../api/net/sf/basedb/core/BasicItem.html">API</a>] 154 154 has an internal <code>permissions</code> variable 155 155 which holds the logged in users permission to manipulate the item. This value … … 160 160 </p> 161 161 <p> 162 Since it is the <code>DbControl</code> [<a href="../../../api/ develop/net/sf/basedb/core/DbControl.html">API</a>]162 Since it is the <code>DbControl</code> [<a href="../../../api/net/sf/basedb/core/DbControl.html">API</a>] 163 163 that is responsible for creating, loading, saving, 164 164 deleting, etc. items from the database, it is also the <code>DbControl</code> that is … … 174 174 in <code>BasicItem</code> will use the <code>SessionControl.getRolePermissions()</code> 175 175 to find the permissions the logged in user has been granted based on role 176 membership. The <code>OwnedItem</code> [<a href="../../../api/ develop/net/sf/basedb/core/OwnedItem.html">API</a>]176 membership. The <code>OwnedItem</code> [<a href="../../../api/net/sf/basedb/core/OwnedItem.html">API</a>] 177 177 class grants additional permissions 178 178 if the logged in user is the owner of an item, and the <code>SharedItem</code> 179 [<a href="../../../api/ develop/net/sf/basedb/core/SharedItem.html">API</a>]179 [<a href="../../../api/net/sf/basedb/core/SharedItem.html">API</a>] 180 180 class grants additional permission if the logged in user has an item or project 181 181 key with permissions for the item. The <code>ChildItem</code> implementation … … 187 187 Subclasses that need to grant or deny additional 188 188 permissions must override the <code>initPermissions()</code> method. 189 For example the <code>News</code> [<a href="../../../api/ develop/net/sf/basedb/core/News.html">API</a>]189 For example the <code>News</code> [<a href="../../../api/net/sf/basedb/core/News.html">API</a>] 190 190 class will grant read access to everyone 191 191 (even if no user is logged in) if the current date is between the start and end 192 date of the news item. The <code>Role</code> [<a href="../../../api/ develop/net/sf/basedb/core/Role.html">API</a>]193 and <code>Group</code> [<a href="../../../api/ develop/net/sf/basedb/core/Group.html">API</a>]192 date of the news item. The <code>Role</code> [<a href="../../../api/net/sf/basedb/core/Role.html">API</a>] 193 and <code>Group</code> [<a href="../../../api/net/sf/basedb/core/Group.html">API</a>] 194 194 classes are other exemples which grant read permission if the logged in user 195 195 is a member of the role or group. … … 229 229 230 230 <p> 231 The various subclasses to the <code>Key</code> [<a href="../../../api/ develop/net/sf/basedb/core/Key.html">API</a>]231 The various subclasses to the <code>Key</code> [<a href="../../../api/net/sf/basedb/core/Key.html">API</a>] 232 232 class are used to store the actual permissions in the database. There are three subclasses: 233 233 </p> 234 234 235 235 <ul> 236 <li>RoleKey [<a href="../../../api/ develop/net/sf/basedb/core/RoleKey.html">API</a>]: Used to grant permissions to roles.237 <li>ItemKey [<a href="../../../api/ develop/net/sf/basedb/core/ItemKey.html">API</a>]: Used to grant permissions to users/groups.238 <li>ProjectKey [<a href="../../../api/ develop/net/sf/basedb/core/ProjectKey.html">API</a>]: Used to grant permission to projects.236 <li>RoleKey [<a href="../../../api/net/sf/basedb/core/RoleKey.html">API</a>]: Used to grant permissions to roles. 237 <li>ItemKey [<a href="../../../api/net/sf/basedb/core/ItemKey.html">API</a>]: Used to grant permissions to users/groups. 238 <li>ProjectKey [<a href="../../../api/net/sf/basedb/core/ProjectKey.html">API</a>]: Used to grant permission to projects. 239 239 </ul> 240 240 … … 273 273 existing item keys. The item key has no <code>set</code> methods to change 274 274 the permissions. Instead you have to use the helper classes, 275 <code>UserPermissions</code> [<a href="../../../api/ develop/net/sf/basedb/core/UserPermissions.html">API</a>]276 and <code>GroupPermissions</code> [<a href="../../../api/ develop/net/sf/basedb/core/GroupPermissions.html">API</a>].275 <code>UserPermissions</code> [<a href="../../../api/net/sf/basedb/core/UserPermissions.html">API</a>] 276 and <code>GroupPermissions</code> [<a href="../../../api/net/sf/basedb/core/GroupPermissions.html">API</a>]. 277 277 </p> 278 278 … … 282 282 they share items to projects instead of to user and groups. 283 283 To set the permissions you use a <code>ProjectPermissions</code> 284 [<a href="../../../api/ develop/net/sf/basedb/core/ProjectPermissions.html">API</a>]284 [<a href="../../../api/net/sf/basedb/core/ProjectPermissions.html">API</a>] 285 285 object. 286 286 </p> … … 309 309 <p> 310 310 The <code>MultiPermissions</code> 311 [<a href="../../../api/ develop/net/sf/basedb/core/MultiPermissions.html">API</a>]311 [<a href="../../../api/net/sf/basedb/core/MultiPermissions.html">API</a>] 312 312 class is not shown in the diagram. It is a useful helper class to modify 313 313 lots of permissions to multiple items at the same time, while keeping those that -
trunk/doc/development/overview/core/authentication.html
r2304 r2962 60 60 <ul> 61 61 <li><a href="../data/authentication.html">Data layer API and database schema</a> 62 <li><a href="../../../api/ develop/net/sf/basedb/core/Application.html">Application.java API</a>63 <li><a href="../../../api/ develop/net/sf/basedb/core/SessionControl.html">SessionControl.java API</a>64 <li><a href="../../../api/ develop/net/sf/basedb/core/authentication/Authenticator.html">Authenticator.java API</a>62 <li><a href="../../../api/net/sf/basedb/core/Application.html">Application.java API</a> 63 <li><a href="../../../api/net/sf/basedb/core/SessionControl.html">SessionControl.java API</a> 64 <li><a href="../../../api/net/sf/basedb/core/authentication/Authenticator.html">Authenticator.java API</a> 65 65 </ul> 66 66 -
trunk/doc/development/overview/core/index.html
r2304 r2962 65 65 <li><a href="../../coding/batch/index.html">Coding rules and guidelines for batch classes</a> 66 66 <li><a href="../query/index.html">Overview of queries and the Query API</a> 67 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>67 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 68 68 </ul> 69 69 -
trunk/doc/development/overview/data/annotations.html
r2875 r2962 62 62 <h3>AnnotationSets</h3> 63 63 <p> 64 The <code>AnnotationSetData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotationSetData.html">API</a>]64 The <code>AnnotationSetData</code> [<a href="../../../api/net/sf/basedb/core/data/AnnotationSetData.html">API</a>] 65 65 class holds all annotations for a single item. An item must implement the 66 <code>AnnotatableData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotatableData.html">API</a>]66 <code>AnnotatableData</code> [<a href="../../../api/net/sf/basedb/core/data/AnnotatableData.html">API</a>] 67 67 interface which defines the <code>annotationSet</code> property for that item. 68 68 </p> … … 86 86 <h3>Annotations</h3> 87 87 <p> 88 The <code>AnnotationData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotationData.html">API</a>]88 The <code>AnnotationData</code> [<a href="../../../api/net/sf/basedb/core/data/AnnotationData.html">API</a>] 89 89 class is the placeholder for an annotation. It must have a type and belong to an 90 90 annotation set. The actual annotation values are stored as <code>ParameterValueData</code> … … 94 94 <h3>AnnotationTypes</h3> 95 95 <p> 96 The <code>AnnotationTypeData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotationTypeData.html">API</a>]96 The <code>AnnotationTypeData</code> [<a href="../../../api/net/sf/basedb/core/data/AnnotationTypeData.html">API</a>] 97 97 class defines the various annotations. It must have a <code>valueType</code> property which cannot 98 98 be changed. The value of this property controls which <code>ParameterValueData</code> subclass … … 134 134 <h3>AnnotationTypeCategories</h3> 135 135 <p> 136 The <code>AnnotationTypeCategory</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotationTypeCategoryData.html">API</a>]136 The <code>AnnotationTypeCategory</code> [<a href="../../../api/net/sf/basedb/core/data/AnnotationTypeCategoryData.html">API</a>] 137 137 class defined categories that are used to group annotation types that are 138 138 related to each other. This information is mainly useful for client applications -
trunk/doc/development/overview/data/authentication.html
r2722 r2962 65 65 <h3>Users and passwords</h3> 66 66 <p> 67 The <code>UserData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/UserData.html">API</a>]67 The <code>UserData</code> [<a href="../../../api/net/sf/basedb/core/data/UserData.html">API</a>] 68 68 class holds information about users. We keep the passwords in 69 69 a separate table and use proxies to avoid loading password data each time a user is loaded 70 70 to minimize security risks. It is only if the password needs to be changed that the 71 <code>PasswordData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/PasswordData.html">API</a>]71 <code>PasswordData</code> [<a href="../../../api/net/sf/basedb/core/data/PasswordData.html">API</a>] 72 72 object is loaded. The one-to-one mapping between user and 73 73 password is controlled by the password class, but a cascade attribute on the user class … … 77 77 <h3>Groups, roles and projects</h3> 78 78 <p> 79 The <code>GroupData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/GroupData.html">API</a>],80 <code>RoleData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/RoleData.html">API</a>] and81 <code>ProjectData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ProjectData.html">API</a>]79 The <code>GroupData</code> [<a href="../../../api/net/sf/basedb/core/data/GroupData.html">API</a>], 80 <code>RoleData</code> [<a href="../../../api/net/sf/basedb/core/data/RoleData.html">API</a>] and 81 <code>ProjectData</code> [<a href="../../../api/net/sf/basedb/core/data/ProjectData.html">API</a>] 82 82 classes holds information about groups, roles and projects respectively. The connection 83 83 to users are controlled by each of the classes. … … 87 87 <p> 88 88 The <code>PluginDefinitionData</code> 89 [<a href="../../../api/ develop/net/sf/basedb/core/data/PluginDefinitionData.html">API</a>] class89 [<a href="../../../api/net/sf/basedb/core/data/PluginDefinitionData.html">API</a>] class 90 90 holds information about plugins. If the plugin is defind to use perminssions, the default 91 91 is to deny everything. The mapping to role key is used to grant/deny permissions to the plugin. … … 95 95 <h3>Keys</h3> 96 96 <p> 97 The <code>KeyData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/KeyData.html">API</a>]97 The <code>KeyData</code> [<a href="../../../api/net/sf/basedb/core/data/KeyData.html">API</a>] 98 98 class and it's subclasses <code>ItemKeyData</code> 99 [<a href="../../../api/ develop/net/sf/basedb/core/data/ItemKeyData.html">API</a>],100 <code>ProjectKeyData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ProjectKeyData.html">API</a>]101 and <code>RoleKeyData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/RoleKeyData.html">API</a>],99 [<a href="../../../api/net/sf/basedb/core/data/ItemKeyData.html">API</a>], 100 <code>ProjectKeyData</code> [<a href="../../../api/net/sf/basedb/core/data/ProjectKeyData.html">API</a>] 101 and <code>RoleKeyData</code> [<a href="../../../api/net/sf/basedb/core/data/RoleKeyData.html">API</a>], 102 102 are used to store information 103 103 about access permissions to items. To get permission to manipulate an item -
trunk/doc/development/overview/data/basic.html
r2304 r2962 85 85 86 86 <dl> 87 <dt>BasicData [<a href="../../../api/ develop/net/sf/basedb/core/data/BasicData.html">API</a>]<dt>87 <dt>BasicData [<a href="../../../api/net/sf/basedb/core/data/BasicData.html">API</a>]<dt> 88 88 <dd> 89 89 The root class. It overrides the <code>equals()</code>, <code>hashCode()</code> … … 92 92 </dd> 93 93 94 <dt>OwnedData [<a href="../../../api/ develop/net/sf/basedb/core/data/OwnedData.html">API</a>]</dt>94 <dt>OwnedData [<a href="../../../api/net/sf/basedb/core/data/OwnedData.html">API</a>]</dt> 95 95 <dd> 96 96 This class extends the <code>BasicData</code> class and adds an <code>owner</code> … … 98 98 </dd> 99 99 100 <dt>SharedData [<a href="../../../api/ develop/net/sf/basedb/core/data/SharedData.html">API</a>]</dt>100 <dt>SharedData [<a href="../../../api/net/sf/basedb/core/data/SharedData.html">API</a>]</dt> 101 101 <dd> 102 102 This class extends the <code>OwnerData</code> class and adds methods for … … 106 106 </dd> 107 107 108 <dt>CommonData [<a href="../../../api/ develop/net/sf/basedb/core/data/CommonData.html">API</a>]</dt>108 <dt>CommonData [<a href="../../../api/net/sf/basedb/core/data/CommonData.html">API</a>]</dt> 109 109 <dd> 110 110 This is a convenience class for items that extends the <code>SharedData</code> … … 114 114 </dd> 115 115 116 <dt>AnnotatedData [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotatedData.html">API</a>]</dt>116 <dt>AnnotatedData [<a href="../../../api/net/sf/basedb/core/data/AnnotatedData.html">API</a>]</dt> 117 117 <dd> 118 118 This is a convenience class for items that can be annotated. Annotations are held … … 127 127 128 128 <dl> 129 <dt>IdentifiableData [<a href="../../../api/ develop/net/sf/basedb/core/data/IdentifiableData.html">API</a>]</dt>129 <dt>IdentifiableData [<a href="../../../api/net/sf/basedb/core/data/IdentifiableData.html">API</a>]</dt> 130 130 <dd> 131 131 All items are identifiable, which means that they have a unique <code>id</code>. The … … 136 136 </dd> 137 137 138 <dt>OwnableData [<a href="../../../api/ develop/net/sf/basedb/core/data/OwnableData.html">API</a>]</dt>138 <dt>OwnableData [<a href="../../../api/net/sf/basedb/core/data/OwnableData.html">API</a>]</dt> 139 139 <dd> 140 140 An ownable item is an item which has an <code>owner</code>. The owner is … … 142 142 </dd> 143 143 144 <dt>ShareableData [<a href="../../../api/ develop/net/sf/basedb/core/data/ShareableData.html">API</a>]</dt>144 <dt>ShareableData [<a href="../../../api/net/sf/basedb/core/data/ShareableData.html">API</a>]</dt> 145 145 <dd> 146 146 A shareable item is an item which can be shared to other users, groups or projects. … … 149 149 </dd> 150 150 151 <dt>NameableData [<a href="../../../api/ develop/net/sf/basedb/core/data/NameableData.html">API</a>]</dt>151 <dt>NameableData [<a href="../../../api/net/sf/basedb/core/data/NameableData.html">API</a>]</dt> 152 152 <dd> 153 153 A nameable item is an item that has a <code>name</code> and, optionally, a <code>description</code>. 154 154 </dd> 155 155 156 <dt>RemovableData [<a href="../../../api/ develop/net/sf/basedb/core/data/RemovableData.html">API</a>]</dt>156 <dt>RemovableData [<a href="../../../api/net/sf/basedb/core/data/RemovableData.html">API</a>]</dt> 157 157 <dd> 158 158 A removable item is an item that can be flagged as removed. This doesn't remove the … … 162 162 </dd> 163 163 164 <dt>SystemData [<a href="../../../api/ develop/net/sf/basedb/core/data/SystemData.html">API</a>]</dt>164 <dt>SystemData [<a href="../../../api/net/sf/basedb/core/data/SystemData.html">API</a>]</dt> 165 165 <dd> 166 166 A system item is an item which has an additional id in the form of string. A system id … … 172 172 </dd> 173 173 174 <dt>FileAttachableData [<a href="../../../api/ develop/net/sf/basedb/core/data/FileAttachableData.html">API</a>]</dt>174 <dt>FileAttachableData [<a href="../../../api/net/sf/basedb/core/data/FileAttachableData.html">API</a>]</dt> 175 175 <dd> 176 176 This interface is used by items that can have an optional file attached to them, for … … 178 178 </dd> 179 179 180 <dt>DiskConsumableData [<a href="../../../api/ develop/net/sf/basedb/core/data/DiskConsumableData.html">API</a>]</dt>180 <dt>DiskConsumableData [<a href="../../../api/net/sf/basedb/core/data/DiskConsumableData.html">API</a>]</dt> 181 181 <dd> 182 182 This interface is used by items which occupies a lot of disk space and must … … 185 185 </dd> 186 186 187 <dt>AnnotatableData [<a href="../../../api/ develop/net/sf/basedb/core/data/AnnotatableData.html">API</a>]</dt>187 <dt>AnnotatableData [<a href="../../../api/net/sf/basedb/core/data/AnnotatableData.html">API</a>]</dt> 188 188 <dd> 189 189 This interface is used by items which can be annotated. Annotations are … … 192 192 </dd> 193 193 194 <dt>ExtendableData [<a href="../../../api/ develop/net/sf/basedb/core/data/ExtendableData.html">API</a>]</dt>194 <dt>ExtendableData [<a href="../../../api/net/sf/basedb/core/data/ExtendableData.html">API</a>]</dt> 195 195 <dd> 196 196 This interface is used by items which can have extra administrator-defined columns. … … 199 199 </dd> 200 200 201 <dt>BatchableData [<a href="../../../api/ develop/net/sf/basedb/core/data/BatchableData.html">API</a>]</dt>201 <dt>BatchableData [<a href="../../../api/net/sf/basedb/core/data/BatchableData.html">API</a>]</dt> 202 202 <dd> 203 203 This interface is a tagging interface which is used by items that needs batch -
trunk/doc/development/overview/data/biomaterial.html
r2304 r2962 63 63 <p> 64 64 There are four types of biomaterials. 65 <code>BioSourceData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/BioSourceData.html">API</a>],66 <code>SampleData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/SampleData.html">API</a>],67 <code>ExtractData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ExtractData.html">API</a>]65 <code>BioSourceData</code> [<a href="../../../api/net/sf/basedb/core/data/BioSourceData.html">API</a>], 66 <code>SampleData</code> [<a href="../../../api/net/sf/basedb/core/data/SampleData.html">API</a>], 67 <code>ExtractData</code> [<a href="../../../api/net/sf/basedb/core/data/ExtractData.html">API</a>] 68 68 and 69 <code>LabeledExtractData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/LabeledExtractData.html">API</a>],69 <code>LabeledExtractData</code> [<a href="../../../api/net/sf/basedb/core/data/LabeledExtractData.html">API</a>], 70 70 </p> 71 71 72 72 <p> 73 73 All four types of biomaterials are derived from the base class <code>BioMaterialData</code> 74 [<a href="../../../api/ develop/net/sf/basedb/core/data/BioMaterialData.html">API</a>].74 [<a href="../../../api/net/sf/basedb/core/data/BioMaterialData.html">API</a>]. 75 75 The reason for this is that they all share common functionality such as 76 76 pooling and events. By using a common base class we do not have to create … … 85 85 <p> 86 86 The <code>MeasuredBioMaterialData</code> 87 [<a href="../../../api/ develop/net/sf/basedb/core/data/MeasuredBioMaterialData.html">API</a>]87 [<a href="../../../api/net/sf/basedb/core/data/MeasuredBioMaterialData.html">API</a>] 88 88 class is used as a base class for the other three biomaterial types. It introduces 89 89 quantity measurements and can store original and remaining quantities. They are both optional. … … 132 132 An event represents something that happened to one or more biomaterials, 133 133 for example the creation of another biomaterial. The <code>BioMaterialEventData</code> 134 [<a href="../../../api/ develop/net/sf/basedb/core/data/BioMaterialEventData.html">API</a>]134 [<a href="../../../api/net/sf/basedb/core/data/BioMaterialEventData.html">API</a>] 135 135 holds information about entry and event dates, protocols used, the user who is responsible, 136 136 etc. -
trunk/doc/development/overview/data/experiments.html
r2709 r2962 66 66 <p> 67 67 The <code>ExperimentData</code> 68 [<a href="../../../api/ develop/net/sf/basedb/core/data/ExperimentData.html">API</a>]68 [<a href="../../../api/net/sf/basedb/core/data/ExperimentData.html">API</a>] 69 69 class is used to collect information about a single experiment. It links 70 70 to any number of <code>RawBioAssayData</code> 71 [<a href="../../../api/ develop/net/sf/basedb/core/data/RawBioAssayData.html">API</a>]71 [<a href="../../../api/net/sf/basedb/core/data/RawBioAssayData.html">API</a>] 72 72 items, which must all be of the same <code>RawDataType</code> 73 [<a href="../../../api/ develop/net/sf/basedb/core/RawDataType.html">API</a>].73 [<a href="../../../api/net/sf/basedb/core/RawDataType.html">API</a>]. 74 74 </p> 75 75 <p> … … 86 86 <p> 87 87 Each line of analysis starts with the creation of a root <code>BioAssaySetData</code> 88 [<a href="../../../api/ develop/net/sf/basedb/core/data/BioAssaySetData.html">API</a>],88 [<a href="../../../api/net/sf/basedb/core/data/BioAssaySetData.html">API</a>], 89 89 which holds the intensities calculated from the raw data. A bioassayset can hold 90 90 one intensity for each channel. The number of channels is defined by the raw data type. 91 91 For each raw bioassay used a <code>BioAssayData</code> 92 [<a href="../../../api/ develop/net/sf/basedb/core/data/BioAssayData.html">API</a>]92 [<a href="../../../api/net/sf/basedb/core/data/BioAssayData.html">API</a>] 93 93 is created. 94 94 </p> … … 96 96 Information about the process that calculated the intensities are stored in 97 97 a <code>TransformationData</code> 98 [<a href="../../../api/ develop/net/sf/basedb/core/data/TransformationData.html">API</a>]98 [<a href="../../../api/net/sf/basedb/core/data/TransformationData.html">API</a>] 99 99 object. The root transformation links with the raw bioassays that are used in this 100 100 line of analysis and to a <code>Job</code> 101 [<a href="../../../api/ develop/net/sf/basedb/core/data/JobData.html">API</a>]101 [<a href="../../../api/net/sf/basedb/core/data/JobData.html">API</a>] 102 102 which holds the plugin and parameters used in the calculation. A typical plugin 103 103 may calculate the intensities by subtracting the mean background from the … … 120 120 The above processes requires a flexible storage solution for the data. 121 121 The <code>VirtualDbData</code> 122 [<a href="../../../api/ develop/net/sf/basedb/core/data/DynamicTablesData.html">API</a>]122 [<a href="../../../api/net/sf/basedb/core/data/DynamicTablesData.html">API</a>] 123 123 object represents a set of tables 124 124 that are created in the dynamic part of the database. In MySQL the dynamic … … 129 129 <p> 130 130 The <code>DataCubeData</code> 131 [<a href="../../../api/ develop/net/sf/basedb/core/data/DataCubeData.html">API</a>]131 [<a href="../../../api/net/sf/basedb/core/data/DataCubeData.html">API</a>] 132 132 is the main item used in the analysis. A coordinate in the cube is given by 133 133 a layer, a column and a position, represented by <code>DataCubeLayerData</code> 134 [<a href="../../../api/ develop/net/sf/basedb/core/data/DataCubeLayerData.html">API</a>]134 [<a href="../../../api/net/sf/basedb/core/data/DataCubeLayerData.html">API</a>] 135 135 and <code>DataCubeColumnData</code> 136 [<a href="../../../api/ develop/net/sf/basedb/core/data/DataCubeColumnData.html">API</a>]136 [<a href="../../../api/net/sf/basedb/core/data/DataCubeColumnData.html">API</a>] 137 137 object. The position has no separate object. At each coordinate we can store the 138 138 intensities and extra values related to the intensities. … … 145 145 doesn't modify the data can reuse the same layer if the new bioassayset is linked 146 146 to a <code>DataCubeFilterData</code> 147 [<a href="../../../api/ develop/net/sf/basedb/core/data/DataCubeFilterData.html">API</a>]147 [<a href="../../../api/net/sf/basedb/core/data/DataCubeFilterData.html">API</a>] 148 148 item. The filter tells which coordinates should remain in the bioassayset. 149 149 </p> … … 166 166 In this case we must create a new cube and add mapping information to 167 167 a <code>DataCubeMappingData</code> 168 [<a href="../../../api/ develop/net/sf/basedb/core/data/DataCubeMappingData.html">API</a>]168 [<a href="../../../api/net/sf/basedb/core/data/DataCubeMappingData.html">API</a>] 169 169 The mapping is a many-to-many mapping between coordinates in the source and destination 170 170 cubes. This allows us to track the source coordinates that were used to calculate -
trunk/doc/development/overview/data/index.html
r2304 r2962 52 52 </p> 53 53 <ul> 54 <li><a href="../../../api/ develop/net/sf/basedb/core/data/package-summary.html">Javadoc for the net.sf.basedb.core.data package</a>54 <li><a href="../../../api/net/sf/basedb/core/data/package-summary.html">Javadoc for the net.sf.basedb.core.data package</a> 55 55 <li><a href="../../coding/data/index.html">Coding rules and guidelines for the data layer</a> 56 56 </ul> -
trunk/doc/development/overview/data/misc.html
r2382 r2962 55 55 <h3>News</h3> 56 56 <p> 57 The <code>NewsData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/NewsData.html">API</a>]57 The <code>NewsData</code> [<a href="../../../api/net/sf/basedb/core/data/NewsData.html">API</a>] 58 58 class holds information about news. It has three dates: 59 59 <code>startDate</code>, <code>newsDate</code> and <code>endDate</code>. The … … 66 66 <h3>Filters</h3> 67 67 Filters have been replace by <code>ItemContext</code>:s 68 [<a href="../../../api/ develop/net/sf/basedb/core/ItemContext.html">API</a>].68 [<a href="../../../api/net/sf/basedb/core/ItemContext.html">API</a>]. 69 69 <p> 70 70 TODO - write documentation and add to UML image … … 75 75 Messages are mainly used for the system to notify a user when something, ie. a job 76 76 has been completed. A <code>MessageData</code> 77 [<a href="../../../api/ develop/net/sf/basedb/core/data/MessageData.html">API</a>]77 [<a href="../../../api/net/sf/basedb/core/data/MessageData.html">API</a>] 78 78 holds information about the message. Information about the sender is kept in 79 79 the <code>from</code> and <code>fromId</code> properties. We didn't want to create … … 92 92 <p> 93 93 The <code>AnyToAnyData</code> 94 [<a href="../../../api/ develop/net/sf/basedb/core/data/AnyToAnyData.html">API</a>]94 [<a href="../../../api/net/sf/basedb/core/data/AnyToAnyData.html">API</a>] 95 95 class allows us to create links between any two items. A link has a direction and name. 96 96 It starts at the <b>from</b> item leading to the <b>to</b> item. The link has a name -
trunk/doc/development/overview/data/parameters.html
r2304 r2962 64 64 <h3>ParameterValueData</h3> 65 65 <p> 66 The <code>ParameterValueData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ParameterValueData.html">API</a>]66 The <code>ParameterValueData</code> [<a href="../../../api/net/sf/basedb/core/data/ParameterValueData.html">API</a>] 67 67 class is an abstract base class that can hold multiple values. It should be used when declaring the generic for 68 68 collection classes. That way a collection can hold mixed type of parameter value classes. The values will be saved as … … 107 107 <p> 108 108 Every type that can be saved have its own subclass. Except for the item classes that all share the same subclass, a subclass 109 that can hold <code>BasicItem</code>s [<a href="../../../api/ develop/net/sf/basedb/core/BasicItem.html">API</a>] derives.109 that can hold <code>BasicItem</code>s [<a href="../../../api/net/sf/basedb/core/BasicItem.html">API</a>] derives. 110 110 </p> 111 111 </body> -
trunk/doc/development/overview/data/plates.html
r2304 r2962 62 62 <h3>Plates</h3> 63 63 <p> 64 <code>PlateData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/PlateData.html">API</a>]64 <code>PlateData</code> [<a href="../../../api/net/sf/basedb/core/data/PlateData.html">API</a>] 65 65 is the main class holding information about a single plate. 66 66 However it all starts with the <code>PlateGeometryData</code> 67 [<a href="../../../api/ develop/net/sf/basedb/core/data/PlateGeometryData.html">API</a>]67 [<a href="../../../api/net/sf/basedb/core/data/PlateGeometryData.html">API</a>] 68 68 which defines how many rows and columns there are on a plate. Since this information is used 69 69 to create wells, and various other checks it is not possible to change the number of … … 73 73 <p> 74 74 All plates must have a <code>PlateTypeData</code> 75 [<a href="../../../api/ develop/net/sf/basedb/core/data/PlateGeometryData.html">API</a>]75 [<a href="../../../api/net/sf/basedb/core/data/PlateGeometryData.html">API</a>] 76 76 which defines the geometry and a set of event types (see below). 77 77 </p> … … 89 89 <p> 90 90 A plate can be created either from scratch or by a <code>PlateMappingData</code> 91 [<a href="../../../api/ develop/net/sf/basedb/core/data/PlateMappingData.html">API</a>].91 [<a href="../../../api/net/sf/basedb/core/data/PlateMappingData.html">API</a>]. 92 92 In the first case it is possible to specify a reporter for each well on the plate. 93 93 In the second case the mapping code creates all the wells and links them to … … 101 101 <p> 102 102 The plate type defines a set of <code>PlateEventTypeData</code> 103 [<a href="../../../api/ develop/net/sf/basedb/core/data/PlateEventTypeData.html">API</a>]103 [<a href="../../../api/net/sf/basedb/core/data/PlateEventTypeData.html">API</a>] 104 104 objects. For a plate of a certain type, it is possible to attach 105 105 exactly one event of each event type. The event type defines an optional protocol type, -
trunk/doc/development/overview/data/plugins.html
r2709 r2962 61 61 <h3>PluginDefinitionData</h3> 62 62 <p> 63 The <code>PluginDefinitionData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/PluginDefinitionData.html">API</a>]63 The <code>PluginDefinitionData</code> [<a href="../../../api/net/sf/basedb/core/data/PluginDefinitionData.html">API</a>] 64 64 holds information of the installed plugin classes. This information is saved when the plugin is installed, it's then used by the 65 65 system to load and run the plugin. … … 68 68 <h3>PluginConfigurationData</h3> 69 69 <p> 70 <code>PluginConfigurationData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/PluginConfigurationData.html">API</a>]70 <code>PluginConfigurationData</code> [<a href="../../../api/net/sf/basedb/core/data/PluginConfigurationData.html">API</a>] 71 71 is used for storing configuration values related to a plugin. A plugin may have many 72 72 different configurations. The flags <code>supportsConfigurations</code> and … … 87 87 <h3>PluginTypeData</h3> 88 88 <p> 89 The <code>PluginTypeData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/PluginTypeData.html">API</a>]89 The <code>PluginTypeData</code> [<a href="../../../api/net/sf/basedb/core/data/PluginTypeData.html">API</a>] 90 90 is used to register information about the additional interfaces a plugin implements. This 91 91 may allow a plugins to be used only in certain contexts. For example, we define … … 98 98 <h3>JobData</h3> 99 99 <p> 100 The <code>JobData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/JobData.html">API</a>]100 The <code>JobData</code> [<a href="../../../api/net/sf/basedb/core/data/JobData.html">API</a>] 101 101 class holds information about one execution of a plugin. The job can be in different states: 102 102 <ul> … … 112 112 <h3>JobAgentData and JobAgentSettingsData</h3> 113 113 <p> 114 A <code>JobAgentData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/JobAgentData.html">API</a>]114 A <code>JobAgentData</code> [<a href="../../../api/net/sf/basedb/core/data/JobAgentData.html">API</a>] 115 115 holds information about a job agent. A job agent is a program running on the same 116 116 or a different server that is regularly checking for jobs that are waiting 117 117 to be executed. The <code>JobAgentSettingsData</code> 118 [<a href="../../../api/ develop/net/sf/basedb/core/data/JobAgentSettingsData.html">API</a>]118 [<a href="../../../api/net/sf/basedb/core/data/JobAgentSettingsData.html">API</a>] 119 119 class links to the plugins the job agent is able to execute. The job agent will 120 120 only execute jobs that are owner by users or projects that the job agent has been -
trunk/doc/development/overview/data/reporters.html
r2712 r2962 62 62 <h3>Reporters</h3> 63 63 <p> 64 The <code>ReporterData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ReporterData.html">API</a>]64 The <code>ReporterData</code> [<a href="../../../api/net/sf/basedb/core/data/ReporterData.html">API</a>] 65 65 class holds information about reporters. The <code>externalId</code> 66 66 is a unique name for the reporter. In the default setup this 67 67 table contains nothing more than the external ID, gene name and symbol. 68 68 This class doesn't have an item class in the core, instead 69 it has an utility class <code>Reporter</code> [<a href="../../../api/ develop/net/sf/basedb/core/Reporter.html">API</a>]70 and is saved with <code>ReporterBatcher</code> [<a href="../../../api/ develop/net/sf/basedb/core/ReporterBatcher.html">API</a>].69 it has an utility class <code>Reporter</code> [<a href="../../../api/net/sf/basedb/core/Reporter.html">API</a>] 70 and is saved with <code>ReporterBatcher</code> [<a href="../../../api/net/sf/basedb/core/ReporterBatcher.html">API</a>]. 71 71 </p> 72 72 <p> … … 75 75 into this table. The name and type of the columns must also be 76 76 described in an XML configuration file. The format of this file 77 is described by the <code>ExtendableData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ExtendableData.html">API</a>].77 is described by the <code>ExtendableData</code> [<a href="../../../api/net/sf/basedb/core/data/ExtendableData.html">API</a>]. 78 78 Here is an example: 79 79 </p> … … 97 97 <h3>ReporterTypes</h3> 98 98 <p> 99 The <code>ReporterTypeData</code> [<a href="../../../api/ develop/net/sf/basedb/core/data/ReporterTypeData.html">API</a>]99 The <code>ReporterTypeData</code> [<a href="../../../api/net/sf/basedb/core/data/ReporterTypeData.html">API</a>] 100 100 class holds reporter type information. A reporter may have, but is 101 101 not required to have a type. The main reason for a reporter to have a -
trunk/doc/development/overview/dynamic/create.html
r2304 r2962 55 55 <ul> 56 56 <li><a href="../data/experiments.html">Data layer API and database schema</a> 57 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>57 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 58 58 </ul> 59 59 -
trunk/doc/development/overview/dynamic/datacube.html
r2304 r2962 54 54 </p> 55 55 <ul> 56 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>56 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 57 57 </ul> 58 58 -
trunk/doc/development/overview/dynamic/extravalues.html
r2304 r2962 54 54 <ul> 55 55 <li><a href="datacube.html">Understanding the data cube</a> 56 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>56 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 57 57 </ul> 58 58 -
trunk/doc/development/overview/dynamic/filter.html
r2498 r2962 54 54 <ul> 55 55 <li><a href="datacube.html">Understanding the data cube</a> 56 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>56 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 57 57 </ul> 58 58 -
trunk/doc/development/overview/dynamic/index.html
r2304 r2962 65 65 <ul> 66 66 <li><a href="../data/experiments.html">Data layer API and database schema</a> 67 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>67 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 68 68 </ul> 69 69 -
trunk/doc/development/overview/dynamic/insert.html
r2304 r2962 55 55 <ul> 56 56 <li><a href="query.html">Querying the dynamic tables</a> 57 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>57 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 58 58 </ul> 59 59 -
trunk/doc/development/overview/dynamic/intensities.html
r2304 r2962 54 54 <ul> 55 55 <li><a href="datacube.html">Understanding the data cube</a> 56 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>56 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 57 57 </ul> 58 58 -
trunk/doc/development/overview/dynamic/merge.html
r2304 r2962 54 54 <ul> 55 55 <li><a href="datacube.html">Understanding the data cube</a> 56 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>56 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 57 57 </ul> 58 58 -
trunk/doc/development/overview/dynamic/query.html
r2304 r2962 60 60 <ul> 61 61 <li><a href="../query/index.html">Query API overview</a> 62 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>62 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 63 63 </ul> 64 64 -
trunk/doc/development/overview/dynamic/rootbioassayset.html
r2498 r2962 60 60 <ul> 61 61 <li><a href="datacube.html">Understanding the data cube</a> 62 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>62 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 63 63 </ul> 64 64 -
trunk/doc/development/overview/exceptions/index.html
r2304 r2962 49 49 </p> 50 50 <ul> 51 <li><a href="../../../api/ develop/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a>51 <li><a href="../../../api/net/sf/basedb/core/package-summary.html">Javadoc for the net.sf.basedb.core package</a> 52 52 </ul> 53 53 -
trunk/doc/development/overview/query/elements.html
r2304 r2962 55 55 <ul> 56 56 <li><a href="../dynamic/query.html">Dynamic API - Querying the dynamic tables</a> 57 <li><a href="../../../api/ develop/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a>57 <li><a href="../../../api/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a> 58 58 </ul> 59 59 -
trunk/doc/development/overview/query/index.html
r2304 r2962 63 63 <ul> 64 64 <li><a href="../dynamic/query.html">Dynamic API - Querying the dynamic tables</a> 65 <li><a href="../../../api/ develop/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a>65 <li><a href="../../../api/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a> 66 66 </ul> 67 67 -
trunk/doc/development/overview/query/overview.html
r2304 r2962 63 63 <li><a href="../core/batchprocessing.html">Batch processing</code> 64 64 <li><a href="../dynamic/query.html">Dynamic API - Querying the dynamic tables</a> 65 <li><a href="../../../api/ develop/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a>65 <li><a href="../../../api/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a> 66 66 </ul> 67 67 -
trunk/doc/development/overview/query/result.html
r2304 r2962 55 55 <ul> 56 56 <li><a href="../dynamic/query.html">Dynamic API - Querying the dynamic tables</a> 57 <li><a href="../../../api/ develop/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a>57 <li><a href="../../../api/net/sf/basedb/core/query/package-summary.html">Javadoc for the net.sf.basedb.core.query package</a> 58 58 </ul> 59 59 -
trunk/doc/development/overview/utility/index.html
r2304 r2962 49 49 </p> 50 50 <ul> 51 <li><a href="../../../api/ develop/net/sf/basedb/util/package-summary.html">Javadoc for the net.sf.basedb.util package</a>51 <li><a href="../../../api/net/sf/basedb/util/package-summary.html">Javadoc for the net.sf.basedb.util package</a> 52 52 </ul> 53 53 -
trunk/doc/development/overview/web/index.html
r2304 r2962 49 49 </p> 50 50 <ul> 51 <li><a href="../../../api/ develop/net/sf/basedb/clients/web/package-summary.html">Javadoc for the net.sf.basedb.clients.web package</a>51 <li><a href="../../../api/net/sf/basedb/clients/web/package-summary.html">Javadoc for the net.sf.basedb.clients.web package</a> 52 52 </ul> 53 53 -
trunk/doc/index.html
r2623 r2962 27 27 <html> 28 28 <head> 29 <title>BASE 2 .0 - Development site</title>29 <title>BASE 2 - Documentation</title> 30 30 <link rel=stylesheet type="text/css" href="styles.css"> 31 <meta http-equiv="refresh" content="0;url=http://base.thep.lu.se"> 32 </head> 31 </head> 33 32 <body> 34 33 35 <a href="http://base.thep.lu.se">The BASE project site</a> 34 <div class="navigation"> 35 BASE 2 - Documentation 36 </div> 37 38 <h1>BASE 2 - Documentation</h1> 39 40 <div class="abstract"> 41 42 <b>Contents</b><br> 43 <ul> 44 <li><a href="installation.html">Installation instructions</a></li> 45 <li><a href="admin/index.html">Administrator documentation</a></li> 46 <li><a href="development/index.html">Developers documentation</a></li> 47 <li><a href="user/index.html">User documentation</a></li> 48 </ul> 49 </div> 36 50 37 51 </body> -
trunk/doc/specifications/core/defaultdata.html
r2304 r2962 111 111 <ul> 112 112 <li>One role key for each item type. For permissions 113 see the <a href="../../api/ develop/net/sf/basedb/core/doc-files/item_permissions.html">113 see the <a href="../../api/net/sf/basedb/core/doc-files/item_permissions.html"> 114 114 Item permissions</a> document 115 115 </ul> -
trunk/src/core/net/sf/basedb/core/BasicItem.java
r2898 r2962 384 384 @throws BaseException If there is an error 385 385 @see Validatable 386 @see <a href="../../../../../ ../development/overview/core/datavalidation.html">Core API overview - Data validation</a>387 @see <a href="../../../../../ ../development/coding/item/index.html#validation">Coding rules and guidelines for item classes</a>386 @see <a href="../../../../../development/overview/core/datavalidation.html">Core API overview - Data validation</a> 387 @see <a href="../../../../../development/coding/item/index.html#validation">Coding rules and guidelines for item classes</a> 388 388 */ 389 389 void validate() … … 400 400 @throws BaseException If there is an error 401 401 @see Transactional 402 @see <a href="../../../../../ ../development/overview/core/transactions.html">Core API overview - Transaction handling</a>403 @see <a href="../../../../../ ../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a>402 @see <a href="../../../../../development/overview/core/transactions.html">Core API overview - Transaction handling</a> 403 @see <a href="../../../../../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a> 404 404 */ 405 405 void onBeforeCommit(Transactional.Action action) … … 432 432 @throws BaseException If there is an error 433 433 @see Transactional 434 @see <a href="../../../../../ ../development/overview/core/transactions.html">Core API overview - Transaction handling</a>435 @see <a href="../../../../../ ../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a>434 @see <a href="../../../../../development/overview/core/transactions.html">Core API overview - Transaction handling</a> 435 @see <a href="../../../../../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a> 436 436 */ 437 437 void onAfterInsert() … … 449 449 450 450 @see Transactional 451 @see <a href="../../../../../ ../development/overview/core/transactions.html">Core API overview - Transaction handling</a>452 @see <a href="../../../../../ ../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a>451 @see <a href="../../../../../development/overview/core/transactions.html">Core API overview - Transaction handling</a> 452 @see <a href="../../../../../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a> 453 453 */ 454 454 void onAfterCommit(Transactional.Action action) … … 465 465 466 466 @see Transactional 467 @see <a href="../../../../../ ../development/overview/core/transactions.html">Core API overview - Transaction handling</a>468 @see <a href="../../../../../ ../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a>467 @see <a href="../../../../../development/overview/core/transactions.html">Core API overview - Transaction handling</a> 468 @see <a href="../../../../../development/coding/item/index.html#transactions">Coding rules and guidelines for item classes</a> 469 469 */ 470 470 void onRollback(Transactional.Action action) -
trunk/src/core/net/sf/basedb/core/Batcher.java
r2304 r2962 30 30 @author Nicklas 31 31 @version 2.0 32 @see <a href="../../../../../ ../development/overview/core/batchprocessing.html">Batch processing overview</a>32 @see <a href="../../../../../development/overview/core/batchprocessing.html">Batch processing overview</a> 33 33 @base.modified $Date$ 34 34 */ -
trunk/src/core/net/sf/basedb/core/ContextKey.java
r2610 r2962 28 28 @author Nicklas 29 29 @version 2.0 30 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>30 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 31 31 @base.modified $Date$ 32 32 */ -
trunk/src/core/net/sf/basedb/core/DataCube.java
r2610 r2962 68 68 @version 2.0 69 69 @base.modified $Date$ 70 @see <a href="../../../../../ ../development/overview/dynamic/index.html">Dynamic API overview</a>70 @see <a href="../../../../../development/overview/dynamic/index.html">Dynamic API overview</a> 71 71 */ 72 72 public class DataCube -
trunk/src/core/net/sf/basedb/core/MappingBatcher.java
r2669 r2962 40 40 implemented). 41 41 <p> 42 Code example: {@link <a href="../../../../../ ../development/overview/dynamic/rootbioassayset.html">Dynamic API - Creating a root bioassayset</a>}42 Code example: {@link <a href="../../../../../development/overview/dynamic/rootbioassayset.html">Dynamic API - Creating a root bioassayset</a>} 43 43 44 44 @author Nicklas -
trunk/src/core/net/sf/basedb/core/PositionBatcher.java
r2669 r2962 40 40 Normally this means linking a position to a reporter. 41 41 <p> 42 Code example: {@link <a href="../../../../../ ../development/overview/dynamic/rootbioassayset.html">Dynamic API - Creating a root bioassayset</a>}42 Code example: {@link <a href="../../../../../development/overview/dynamic/rootbioassayset.html">Dynamic API - Creating a root bioassayset</a>} 43 43 44 44 @author Nicklas -
trunk/src/core/net/sf/basedb/core/QueryRuntimeFilter.java
r2304 r2962 45 45 @author Nicklas 46 46 @version 2.0 47 @see <a href="../../../../../ ../development/overview/query/overview.html#filters">Query API overview - runtime filters</a>47 @see <a href="../../../../../development/overview/query/overview.html#filters">Query API overview - runtime filters</a> 48 48 @base.modified $Date$ 49 49 */ -
trunk/src/core/net/sf/basedb/core/QueryRuntimeFilterFactory.java
r2722 r2962 44 44 @author Nicklas 45 45 @version 2.0 46 @see <a href="../../../../../ ../development/overview/query/overview.html#factory">Query API overview - filter factory</a>46 @see <a href="../../../../../development/overview/query/overview.html#factory">Query API overview - filter factory</a> 47 47 @base.modified $Date$ 48 48 */ -
trunk/src/core/net/sf/basedb/core/QueryRuntimeFilterManager.java
r2304 r2962 34 34 @author Nicklas 35 35 @version 2.0 36 @see <a href="../../../../../ ../development/overview/query/overview.html#filters">Query API overview - runtime filters</a>36 @see <a href="../../../../../development/overview/query/overview.html#filters">Query API overview - runtime filters</a> 37 37 @base.modified $Date$ 38 38 */ -
trunk/src/core/net/sf/basedb/core/Validatable.java
r2304 r2962 27 27 This interface is a tagging interface for items that needs case 2 28 28 validation. See <a 29 href="../../../../../ ../development/overview/core/datavalidation,html">Core API overview -29 href="../../../../../development/overview/core/datavalidation,html">Core API overview - 30 30 Data validation</a> and <a 31 href="../../../../../ ../development/coding/item/index.html#validation">Coding rules and31 href="../../../../../development/coding/item/index.html#validation">Coding rules and 32 32 guidelines for item classes</a> 33 33 <p> -
trunk/src/core/net/sf/basedb/core/data/AnnotatableData.java
r2304 r2962 57 57 @see AnnotationTypeData 58 58 @see net.sf.basedb.core.Annotatable 59 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotations overview</a>59 @see <a href="../../../../../../development/overview/data/annotations.html">Annotations overview</a> 60 60 */ 61 61 public interface AnnotatableData -
trunk/src/core/net/sf/basedb/core/data/AnnotatedData.java
r2304 r2962 33 33 @see AnnotatableData 34 34 @see net.sf.basedb.core.AnnotatedItem 35 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotation overview</a>35 @see <a href="../../../../../../development/overview/data/annotations.html">Annotation overview</a> 36 36 */ 37 37 public abstract class AnnotatedData -
trunk/src/core/net/sf/basedb/core/data/AnnotationData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Annotation 34 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotations overview</a>34 @see <a href="../../../../../../development/overview/data/annotations.html">Annotations overview</a> 35 35 @hibernate.class table="`Annotations`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/AnnotationSetData.java
r2304 r2962 35 35 @version 2.0 36 36 @see net.sf.basedb.core.AnnotationSet 37 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotations overview</a>37 @see <a href="../../../../../../development/overview/data/annotations.html">Annotations overview</a> 38 38 @hibernate.class table="`AnnotationSets`" lazy="true" batch-size="10" 39 39 */ -
trunk/src/core/net/sf/basedb/core/data/AnnotationTypeCategoryData.java
r2517 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.AnnotationTypeCategory 33 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotations overview</a>33 @see <a href="../../../../../../development/overview/data/annotations.html">Annotations overview</a> 34 34 @base.modified $Date: 2006-04-18 10:48:02 +0100 (Tue, 18 Apr 2006) $ 35 35 @hibernate.class table="`AnnotationTypeCategories`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/AnnotationTypeData.java
r2933 r2962 35 35 @version 2.0 36 36 @see net.sf.basedb.core.AnnotationType 37 @see <a href="../../../../../../ ../development/overview/data/annotations.html">Annotations overview</a>37 @see <a href="../../../../../../development/overview/data/annotations.html">Annotations overview</a> 38 38 @base.modified $Date$ 39 39 @hibernate.class table="`AnnotationTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/AnyToAnyData.java
r2382 r2962 32 32 @see net.sf.basedb.core.AnyToAny 33 33 @base.modified $Date$ 34 @see <a href="../../../../../../ ../development/overview/data/misc.html">Misc overview</a>34 @see <a href="../../../../../../development/overview/data/misc.html">Misc overview</a> 35 35 @hibernate.class table="`AnyToAny`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/ArrayBatchData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ArrayBatch 35 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>35 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`ArrayBatches`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/ArrayDesignBlockData.java
r2809 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ArrayDesignBlock 35 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>35 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`ArrayDesignBlocks`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/ArrayDesignData.java
r2809 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ArrayDesign 35 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>35 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`ArrayDesigns`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/ArrayDesignPlateData.java
r2304 r2962 31 31 @see net.sf.basedb.core.ArrayDesign 32 32 @see net.sf.basedb.core.Plate 33 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>33 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.class table="`ArrayDesignPlates`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/ArraySlideData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.ArraySlide 32 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>32 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`ArraySlides`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/BasicData.java
r2304 r2962 44 44 @author Nicklas 45 45 @version 2.0 46 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>46 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 47 47 */ 48 48 public abstract class BasicData -
trunk/src/core/net/sf/basedb/core/data/BatchableData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.BasicBatcher 35 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>36 @see <a href="../../../../../../ ../development/overview/core/index.html#batch">Batch processing</a>35 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 36 @see <a href="../../../../../../development/overview/core/index.html#batch">Batch processing</a> 37 37 */ 38 38 public interface BatchableData -
trunk/src/core/net/sf/basedb/core/data/BioAssayData.java
r2892 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.BioAssay 35 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>35 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`BioAssays`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/BioAssaySetData.java
r2892 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.BioAssaySet 36 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>36 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`BioAssaySets`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/BioMaterialData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.BioMaterial 32 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>32 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`BioMaterials`" lazy="false" discriminator-value="-1" -
trunk/src/core/net/sf/basedb/core/data/BioMaterialEventData.java
r2479 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.BioMaterialEvent 36 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>36 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`BioMaterialEvents`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/BioSourceData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.BioSource 33 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>33 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.subclass discriminator-value="1" -
trunk/src/core/net/sf/basedb/core/data/BooleanParameterValueData.java
r2304 r2962 32 32 @author Nicklas, Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="7" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/ClientData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Client 34 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>34 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 35 35 @hibernate.class table="`Clients`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/ClientDefaultSettingData.java
r2304 r2962 27 27 @author enell 28 28 @see net.sf.basedb.core.ClientDefaultSetting 29 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>29 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 30 30 @hibernate.class table="`ClienDefaultSettings`" lazy="false" 31 31 */ -
trunk/src/core/net/sf/basedb/core/data/CommonData.java
r2304 r2962 32 32 @author Nicklas 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>34 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 35 35 */ 36 36 public abstract class CommonData -
trunk/src/core/net/sf/basedb/core/data/ContextData.java
r2304 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.ItemContext 36 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>36 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`Contexts`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/ContextIndex.java
r2864 r2962 30 30 @author Nicklas 31 31 @version 2.0 32 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>32 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 33 33 @base.modified $Date$ 34 34 */ -
trunk/src/core/net/sf/basedb/core/data/DataCubeColumnData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.DataCubeColumn 32 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>32 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`DataCubeColumns`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DataCubeData.java
r2387 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.DataCube 34 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>34 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`DataCubes`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DataCubeExtraValueData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.DataCubeExtraValue 32 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>32 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`DataCubeExtraValues`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DataCubeFilterData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.DataCubeFilter 32 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>32 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`DataCubeFilters`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DataCubeLayerData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.DataCubeLayer 32 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>32 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`DataCubeLayers`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DateParameterValueData.java
r2304 r2962 33 33 @author Samuel 34 34 @version 2.0 35 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>35 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 36 36 @hibernate.subclass discriminator-value="8" 37 37 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/DirectoryData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.Directory 35 @see <a href="../../../../../../ ../development/overview/data/file.html">File and directory overview</a>35 @see <a href="../../../../../../development/overview/data/file.html">File and directory overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`Directories`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/DiskConsumableData.java
r2304 r2962 61 61 @see DiskUsageData 62 62 @see net.sf.basedb.core.DiskConsumable 63 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>63 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 64 64 */ 65 65 public interface DiskConsumableData -
trunk/src/core/net/sf/basedb/core/data/DiskUsageData.java
r2929 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.DiskUsage 34 @see <a href="../../../../../../ ../development/overview/data/quota.html">Quota overview</a>34 @see <a href="../../../../../../development/overview/data/quota.html">Quota overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`DiskUsage`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/DoubleParameterValueData.java
r2305 r2962 32 32 @author Nicklas, Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="4" 36 36 @base.modified $Date: 2005-07-05 15:51:30 +0200 (ti, 05 jul 2005) $ -
trunk/src/core/net/sf/basedb/core/data/ExperimentData.java
r2694 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.Experiment 36 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>36 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`Experiments`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/ExtraValueData.java
r2664 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.ExtraValue 33 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>33 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 34 34 @hibernate.class table="`ExtraValues`" lazy="false" 35 35 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/ExtraValueTypeData.java
r2733 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.ExtraValueType 33 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>33 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 34 34 @hibernate.class table="`ExtraValueTypes`" lazy="true" 35 35 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/ExtractData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Extract 32 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>32 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.subclass discriminator-value="3" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/FeatureData.java
r2497 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Feature 32 @see <a href="../../../../../../ ../development/overview/data/slides.html">Array LIMS - slides overview</a>32 @see <a href="../../../../../../development/overview/data/slides.html">Array LIMS - slides overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`Features`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/FileAttachableData.java
r2304 r2962 52 52 @version 2.0 53 53 @see BasicData 54 @see <a href="../../../../../../ ../development/overview/data/files.html">File and directory overview</a>55 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>54 @see <a href="../../../../../../development/overview/data/files.html">File and directory overview</a> 55 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 56 56 */ 57 57 public interface FileAttachableData -
trunk/src/core/net/sf/basedb/core/data/FileData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.File 32 @see <a href="../../../../../../ ../development/overview/data/file.html">File and directory overview</a>32 @see <a href="../../../../../../development/overview/data/file.html">File and directory overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`Files`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/FileTypeData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.File 32 @see <a href="../../../../../../ ../development/overview/data/file.html">File and directory overview</a>32 @see <a href="../../../../../../development/overview/data/file.html">File and directory overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`FileTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/FloatParameterValueData.java
r2304 r2962 32 32 @author Nicklas, Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="3" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/FormulaData.java
r2733 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.Formula 36 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Session and client overview</a>36 @see <a href="../../../../../../development/overview/data/experiments.html">Session and client overview</a> 37 37 @hibernate.class table="`Formulas`" lazy="false" 38 38 */ -
trunk/src/core/net/sf/basedb/core/data/GlobalDefaultSettingData.java
r2304 r2962 27 27 @author enell 28 28 @see net.sf.basedb.core.GlobalDefaultSetting 29 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>29 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 30 30 @hibernate.class table="`GlobalDefaultSettings`" lazy="false" 31 31 */ -
trunk/src/core/net/sf/basedb/core/data/GroupData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.Group 35 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`Groups`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/GuiContextData.java
r2304 r2962 34 34 @author Nicklas 35 35 @version 2.0 36 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugins ovreview</a>36 @see <a href="../../../../../../development/overview/data/plugins.html">Plugins ovreview</a> 37 37 @base.modified $Date$ 38 38 */ -
trunk/src/core/net/sf/basedb/core/data/HardwareData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Hardware 32 @see <a href="../../../../../../ ../development/overview/data/wares.html">Hardware and software overview</a>32 @see <a href="../../../../../../development/overview/data/wares.html">Hardware and software overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`Hardware`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/HardwareTypeData.java
r2495 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.HardwareType 34 @see <a href="../../../../../../ ../development/overview/data/wares.html">Hardware and software overview</a>34 @see <a href="../../../../../../development/overview/data/wares.html">Hardware and software overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`HardwareTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/HelpData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Help 32 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>32 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`HelpTexts`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/HybridizationData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Hybridization 34 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>34 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`Hybridizations`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/IdentifiableData.java
r2304 r2962 46 46 @version 2.0 47 47 @see BasicData 48 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>48 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 49 49 */ 50 50 public interface IdentifiableData -
trunk/src/core/net/sf/basedb/core/data/ImageData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.Image 33 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>33 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.class table="`Images`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/IntegerParameterValueData.java
r2304 r2962 32 32 @author Nicklas, Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="1" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/ItemKeyData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ItemKey 35 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.subclass discriminator-value="1" -
trunk/src/core/net/sf/basedb/core/data/ItemParameterValueData.java
r2304 r2962 34 34 @author Nicklas, Samuel 35 35 @version 2.0 36 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>36 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 37 37 @hibernate.subclass discriminator-value="10" 38 38 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/JobAgentData.java
r2627 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.JobAgent 35 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugin/jobs overview</a>35 @see <a href="../../../../../../development/overview/data/plugins.html">Plugin/jobs overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`JobAgents`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/JobAgentSettingsData.java
r2627 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.JobAgentSettings 33 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugin/jobs overview</a>33 @see <a href="../../../../../../development/overview/data/plugins.html">Plugin/jobs overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.class table="`JobAgentSettings`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/JobData.java
r2745 r2962 35 35 @version 2.0 36 36 @see net.sf.basedb.core.Job 37 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugin/jobs overview</a>37 @see <a href="../../../../../../development/overview/data/plugins.html">Plugin/jobs overview</a> 38 38 @base.modified $Date$ 39 39 @hibernate.class table="`Jobs`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/KeyData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.Key 33 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>33 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.class table="`Keys`" lazy="true" discriminator-value="-1" -
trunk/src/core/net/sf/basedb/core/data/LabelData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Label 32 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>32 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 33 33 @hibernate.class table="`Labels`" lazy="false" 34 34 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/LabeledExtractData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.LabeledExtract 32 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>32 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.subclass discriminator-value="4" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/LongParameterValueData.java
r2305 r2962 32 32 @author Nicklas, Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="2" 36 36 @base.modified $Date: 2005-07-14 09:57:11 +0200 (to, 14 jul 2005) $ -
trunk/src/core/net/sf/basedb/core/data/MappingCoordinate.java
r2304 r2962 36 36 @version 2.0 37 37 @see PlateMappingData 38 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>38 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 39 39 @base.modified $Date$ 40 40 */ -
trunk/src/core/net/sf/basedb/core/data/MeasuredBioMaterialData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.MeasuredBioMaterial 35 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>35 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.subclass discriminator-value="-1" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/MessageData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Message 34 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugin/jobs overview</a>34 @see <a href="../../../../../../development/overview/data/plugins.html">Plugin/jobs overview</a> 35 35 @hibernate.class table="`Messages`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/MimeTypeData.java
r2691 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.MimeType 32 @see <a href="../../../../../../ ../development/overview/data/files.html">File and directory overview</a>32 @see <a href="../../../../../../development/overview/data/files.html">File and directory overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`MimeTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/NameableData.java
r2304 r2962 61 61 @version 2.0 62 62 @see CommonData 63 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>63 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 64 64 */ 65 65 public interface NameableData -
trunk/src/core/net/sf/basedb/core/data/NewsData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.News 34 @see <a href="../../../../../../ ../development/overview/data/misc.html">Misc overview</a>34 @see <a href="../../../../../../development/overview/data/misc.html">Misc overview</a> 35 35 @hibernate.class table="`News`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/OwnableData.java
r2304 r2962 53 53 @see OwnedData 54 54 @see net.sf.basedb.core.Ownable 55 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>56 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>55 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 56 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 57 57 */ 58 58 public interface OwnableData -
trunk/src/core/net/sf/basedb/core/data/OwnedData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.OwnedItem 34 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>34 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 35 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 36 36 */ 37 37 public abstract class OwnedData -
trunk/src/core/net/sf/basedb/core/data/ParameterValueData.java
r2787 r2962 31 31 @author Nicklas, Samuel 32 32 @version 2.0 33 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>33 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 34 34 @hibernate.class table="`ParameterValues`" discriminator-value="-1" lazy="true" batch-size="10" 35 35 @hibernate.discriminator column="`discriminator`" type="int" -
trunk/src/core/net/sf/basedb/core/data/PasswordData.java
r2304 r2962 32 32 @author Nicklas 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>34 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 35 35 @hibernate.class table="`Passwords`" lazy="true" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/PlateCoordinate.java
r2304 r2962 36 36 @version 2.0 37 37 @see PlateData 38 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>38 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 39 39 @base.modified $Date$ 40 40 */ -
trunk/src/core/net/sf/basedb/core/data/PlateData.java
r2304 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.Plate 36 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>36 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`Plates`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/PlateEventData.java
r2479 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.PlateEvent 34 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>34 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`PlateEvents`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/PlateEventTypeData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.PlateEventType 34 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>34 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`PlateEventTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/PlateGeometryData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.PlateGeometry 32 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>32 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`PlateGeometries`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/PlateMappingData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.PlateMapping 35 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>35 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`PlateMappings`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/PlateTypeData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.PlateType 34 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>34 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`PlateTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/PluginConfigurationData.java
r2709 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.PluginConfiguration 36 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugins</a>36 @see <a href="../../../../../../development/overview/data/plugins.html">Plugins</a> 37 37 @hibernate.class table="`PluginConfigurations`" lazy="false" 38 38 */ -
trunk/src/core/net/sf/basedb/core/data/PluginDefinitionData.java
r2854 r2962 37 37 @version 2.0 38 38 @see net.sf.basedb.core.PluginDefinition 39 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugins</a>39 @see <a href="../../../../../../development/overview/data/plugins.html">Plugins</a> 40 40 @hibernate.class table="`PluginDefinitions`" lazy="false" 41 41 */ -
trunk/src/core/net/sf/basedb/core/data/PluginPermission.java
r2722 r2962 28 28 @author Martin 29 29 @version 2.1 30 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>30 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 31 31 */ 32 32 public class PluginPermission -
trunk/src/core/net/sf/basedb/core/data/PluginTypeData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.PluginType 34 @see <a href="../../../../../../ ../development/overview/data/plugins.html">Plugins</a>34 @see <a href="../../../../../../development/overview/data/plugins.html">Plugins</a> 35 35 @hibernate.class table="`PluginTypes`" lazy="false" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/ProjectData.java
r2941 r2962 34 34 @version 2.0 35 35 @see net.sf.basedb.core.Project 36 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>36 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 37 37 @base.modified $Date$ 38 38 @hibernate.class table="`Projects`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/ProjectKeyData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ProjectKey 35 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.subclass discriminator-value="2" -
trunk/src/core/net/sf/basedb/core/data/PropertyFilterData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.ItemContext 33 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>33 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 34 34 @base.modified $Date$ 35 35 */ -
trunk/src/core/net/sf/basedb/core/data/ProtocolData.java
r2875 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.Protocol 33 @see <a href="../../../../../../ ../development/overview/data/protocols.html">Protocol overview</a>33 @see <a href="../../../../../../development/overview/data/protocols.html">Protocol overview</a> 34 34 @hibernate.class table="`Protocols`" lazy="true" 35 35 */ -
trunk/src/core/net/sf/basedb/core/data/ProtocolTypeData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.ProtocolType 33 @see <a href="../../../../../../ ../development/overview/data/protocols.html">Protocol overview</a>33 @see <a href="../../../../../../development/overview/data/protocols.html">Protocol overview</a> 34 34 @hibernate.class table="`ProtocolTypes`" lazy="false" 35 35 -
trunk/src/core/net/sf/basedb/core/data/QuotaData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.Quota 35 @see <a href="../../../../../../ ../development/overview/data/quota.html">Quota overview</a>35 @see <a href="../../../../../../development/overview/data/quota.html">Quota overview</a> 36 36 @hibernate.class table="`Quota`" lazy="true" 37 37 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/QuotaIndex.java
r2864 r2962 35 35 @author enell 36 36 @version 2.0 37 @see <a href="../../../../../../ ../development/overview/data/quota.html">Quota overview</a>37 @see <a href="../../../../../../development/overview/data/quota.html">Quota overview</a> 38 38 @base.modified $Date$ 39 39 */ -
trunk/src/core/net/sf/basedb/core/data/QuotaTypeData.java
r2304 r2962 29 29 @author enell 30 30 @version 2.0 31 @see <a href="../../../../../../ ../development/overview/data/quota.html">Quota overview</a>31 @see <a href="../../../../../../development/overview/data/quota.html">Quota overview</a> 32 32 @base.modified $Date$ 33 33 @hibernate.class table="`QuotaTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/RawBioAssayData.java
r2419 r2962 36 36 @version 2.0 37 37 @see net.sf.basedb.core.RawBioAssay 38 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>38 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 39 39 @base.modified $Date$ 40 40 @hibernate.class table="`RawBioAssays`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/RawData.java
r2814 r2962 37 37 @see net.sf.basedb.core.RawDataBatcher 38 38 @see net.sf.basedb.core.RawDataUtil 39 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>39 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 40 40 @base.modified $Date$ 41 41 */ -
trunk/src/core/net/sf/basedb/core/data/RemovableData.java
r2304 r2962 59 59 @author Nicklas 60 60 @version 2.0 61 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>61 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 62 62 */ 63 63 public interface RemovableData -
trunk/src/core/net/sf/basedb/core/data/ReporterData.java
r2304 r2962 47 47 @see net.sf.basedb.core.ReporterBatcher 48 48 @see net.sf.basedb.core.ExtendedProperties 49 @see <a href="../../../../../../ ../development/overview/data/reporters.html">Reporter overview</a>49 @see <a href="../../../../../../development/overview/data/reporters.html">Reporter overview</a> 50 50 @hibernate.class table="`Reporters`" lazy="false" 51 51 */ -
trunk/src/core/net/sf/basedb/core/data/ReporterListData.java
r2428 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.ReporterList 35 @see <a href="../../../../../../ ../development/overview/data/reporters.html">Reporter overview</a>35 @see <a href="../../../../../../development/overview/data/reporters.html">Reporter overview</a> 36 36 @hibernate.class table="`ReporterLists`" lazy="true" 37 37 */ -
trunk/src/core/net/sf/basedb/core/data/ReporterListScoreData.java
r2864 r2962 36 36 @version 2.0 37 37 @see net.sf.basedb.core.ReporterList 38 @see <a href="../../../../../../ ../development/overview/data/reporters.html">Reporter overview</a>38 @see <a href="../../../../../../development/overview/data/reporters.html">Reporter overview</a> 39 39 */ 40 40 @SuppressWarnings({"serial"}) -
trunk/src/core/net/sf/basedb/core/data/ReporterTypeData.java
r2304 r2962 35 35 @version 2.0 36 36 @see net.sf.basedb.core.data.ReporterData 37 @see <a href="../../../../../../ ../development/overview/data/reporters.html">Reporter overview</a>37 @see <a href="../../../../../../development/overview/data/reporters.html">Reporter overview</a> 38 38 @hibernate.class table="`ReporterTypes`" lazy="true" 39 39 */ -
trunk/src/core/net/sf/basedb/core/data/RoleData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.Role 35 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`Roles`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/RoleKeyData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.RoleKey 35 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.subclass discriminator-value="3" -
trunk/src/core/net/sf/basedb/core/data/SampleData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Sample 32 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>32 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.subclass discriminator-value="2" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/ScanData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Scan 34 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>34 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`Scans`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/SessionData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.Session 34 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>34 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 35 35 @hibernate.class table="`Sessions`" lazy="false" 36 36 */ -
trunk/src/core/net/sf/basedb/core/data/SettingData.java
r2786 r2962 28 28 @version 2.0 29 29 @see net.sf.basedb.core.Setting 30 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>30 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 31 31 */ 32 32 public abstract class SettingData -
trunk/src/core/net/sf/basedb/core/data/ShareableData.java
r2304 r2962 71 71 @see SharedData 72 72 @see net.sf.basedb.core.Shareable 73 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>74 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>73 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 74 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 75 75 */ 76 76 public interface ShareableData -
trunk/src/core/net/sf/basedb/core/data/SharedData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.SharedItem 34 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>35 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>34 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 35 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 36 36 */ 37 37 public abstract class SharedData -
trunk/src/core/net/sf/basedb/core/data/SoftwareData.java
r2304 r2962 29 29 @version 2.0 30 30 @see net.sf.basedb.core.Software 31 @see <a href="../../../../../../ ../development/overview/data/wares.html">Hardware and software overview</a>31 @see <a href="../../../../../../development/overview/data/wares.html">Hardware and software overview</a> 32 32 @base.modified $Date$ 33 33 @hibernate.class table="`Software`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/SoftwareTypeData.java
r2304 r2962 32 32 @version 2.0 33 33 @see net.sf.basedb.core.SoftwareType 34 @see <a href="../../../../../../ ../development/overview/data/wares.html">Hardware and software overview</a>34 @see <a href="../../../../../../development/overview/data/wares.html">Hardware and software overview</a> 35 35 @base.modified $Date$ 36 36 @hibernate.class table="`SoftwareTypes`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/SpotImagesData.java
r2304 r2962 31 31 @version 2.0 32 32 @see net.sf.basedb.core.SpotImages 33 @see <a href="../../../../../../ ../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a>33 @see <a href="../../../../../../development/overview/data/hybridizations.html">Hybridzations and raw data overview</a> 34 34 @base.modified $Date$ 35 35 @hibernate.class table="`SpotImages`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/StringParameterValueData.java
r2304 r2962 32 32 @author Nicklas 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="5" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/SystemData.java
r2304 r2962 60 60 @author Nicklas 61 61 @version 2.0 62 @see <a href="../../../../../../ ../development/overview/data/basic.html">Basic classes and interfaces</a>62 @see <a href="../../../../../../development/overview/data/basic.html">Basic classes and interfaces</a> 63 63 */ 64 64 public interface SystemData -
trunk/src/core/net/sf/basedb/core/data/TextParameterValueData.java
r2304 r2962 32 32 @author Samuel 33 33 @version 2.0 34 @see <a href="../../../../../../ ../development/overview/data/parameters.html">Parameters overview</a>34 @see <a href="../../../../../../development/overview/data/parameters.html">Parameters overview</a> 35 35 @hibernate.subclass discriminator-value="6" 36 36 @base.modified $Date$ -
trunk/src/core/net/sf/basedb/core/data/TransformationData.java
r2304 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.Transformation 35 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>35 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`Transformations`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/UsedQuantity.java
r2304 r2962 33 33 @author Nicklas 34 34 @version 2.0 35 @see <a href="../../../../../../ ../development/overview/data/biomaterial.html">Biomaterials overview</a>35 @see <a href="../../../../../../development/overview/data/biomaterial.html">Biomaterials overview</a> 36 36 @base.modified $Date$ 37 37 */ -
trunk/src/core/net/sf/basedb/core/data/UserClientSettingData.java
r2304 r2962 27 27 @author enell 28 28 @see net.sf.basedb.core.UserClientSetting 29 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>29 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 30 30 @hibernate.class table="`UserClientSettings`" lazy="false" 31 31 */ -
trunk/src/core/net/sf/basedb/core/data/UserData.java
r2304 r2962 35 35 @version 2.0 36 36 @see net.sf.basedb.core.User 37 @see <a href="../../../../../../ ../development/overview/data/authentication.html">Authentication overview</a>37 @see <a href="../../../../../../development/overview/data/authentication.html">Authentication overview</a> 38 38 @base.modified $Date$ 39 39 @hibernate.class table="`Users`" lazy="false" -
trunk/src/core/net/sf/basedb/core/data/UserDefaultSettingData.java
r2304 r2962 27 27 @author enell 28 28 @see net.sf.basedb.core.UserDefaultSetting 29 @see <a href="../../../../../../ ../development/overview/data/clients.html">Session and client overview</a>29 @see <a href="../../../../../../development/overview/data/clients.html">Session and client overview</a> 30 30 @hibernate.class table="`UserDefaultSettings`" lazy="false" 31 31 */ -
trunk/src/core/net/sf/basedb/core/data/VirtualDbData.java
r2387 r2962 33 33 @version 2.0 34 34 @see net.sf.basedb.core.VirtualDb 35 @see <a href="../../../../../../ ../development/overview/data/experiments.html">Experiments and analysis overview</a>35 @see <a href="../../../../../../development/overview/data/experiments.html">Experiments and analysis overview</a> 36 36 @base.modified $Date$ 37 37 @hibernate.class table="`VirtualDbs`" lazy="true" -
trunk/src/core/net/sf/basedb/core/data/WellData.java
r2304 r2962 30 30 @version 2.0 31 31 @see net.sf.basedb.core.Well 32 @see <a href="../../../../../../ ../development/overview/data/plates.html">Array LIMS - Plates overview</a>32 @see <a href="../../../../../../development/overview/data/plates.html">Array LIMS - Plates overview</a> 33 33 @base.modified $Date$ 34 34 @hibernate.class table="`Wells`" lazy="true" -
trunk/src/core/net/sf/basedb/core/query/Query.java
r2669 r2962 60 60 @author Nicklas 61 61 @version 2.0 62 @see <a href="../../../../../../ ../development/overview/query/index.html">Query API documentation</a>62 @see <a href="../../../../../../development/overview/query/index.html">Query API documentation</a> 63 63 @see net.sf.basedb.core.AbstractQuery 64 64 @base.modified $Date$
Note: See TracChangeset
for help on using the changeset viewer.