Salome HOME
PMD plugin is refreshed. Some code is modified to respect PMD rules. Ant build proced...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / dto / ImportedStudyDTO.java
index 98ac862c96b10bac42c79bd0594dca223616bc62..ddb9559f7afeb42cb79aedd0f181eb8d47f85e7e 100644 (file)
@@ -10,22 +10,22 @@ public class ImportedStudyDTO {
        /**
         * DB primary key.
         */
-       private long    rid;
+       private long    _rid;
     /**
      * Study reference.
      */
-    private String  sid;
+    private String  _reference;
     /**
      * Study title.
      */
-    private String  title;
+    private String  _title;
 
        /**
         * Get the rid.
         * @return the rid
         */
        public long getIndex() {
-               return rid;
+               return _rid;
        }
 
        /**
@@ -33,15 +33,15 @@ public class ImportedStudyDTO {
         * @return the rid
         */
        public long getRid() {
-               return rid;
+               return _rid;
        }
 
        /**
         * Set the rid.
         * @param rid the rid to set
         */
-       public void setRid(long rid) {
-               this.rid = rid;
+       public void setRid(final long rid) {
+               this._rid = rid;
        }
 
        /**
@@ -49,15 +49,15 @@ public class ImportedStudyDTO {
         * @return the sid
         */
        public String getReference() {
-               return sid;
+               return _reference;
        }
 
        /**
         * Set the sid.
         * @param sid the sid to set
         */
-       public void setReference(String sid) {
-               this.sid = sid;
+       public void setReference(final String sid) {
+               this._reference = sid;
        }
 
        /**
@@ -65,14 +65,14 @@ public class ImportedStudyDTO {
         * @return the title
         */
        public String getTitle() {
-               return title;
+               return _title;
        }
 
        /**
         * Set the title.
         * @param title the title to set
         */
-       public void setTitle(String title) {
-               this.title = title;
+       public void setTitle(final String title) {
+               this._title = title;
        }
 }
\ No newline at end of file