source: java/main/src/main/java/com/framsticks/params/AbstractUniqueObject.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 478 bytes
Line 
1package com.framsticks.params;
2
3import com.framsticks.params.annotations.FramsClassAnnotation;
4import com.framsticks.params.annotations.ParamAnnotation;
5
6@FramsClassAnnotation
7public abstract class AbstractUniqueObject implements UniqueObject {
8
9        protected String uid;
10
11        /**
12         * @return the uid
13         */
14        @ParamAnnotation
15        public String getUid() {
16                return uid;
17        }
18
19        /**
20         * @param uid the uid to set
21         */
22        @ParamAnnotation
23        public void setUid(String uid) {
24                this.uid = uid;
25        }
26
27}
Note: See TracBrowser for help on using the repository browser.