source: AnnotationManagerN4J/src/main/java/de/mpiwg/itgroup/annotations/Actor.java @ 9:b2bfc3bc9ba8

Last change on this file since 9:b2bfc3bc9ba8 was 9:b2bfc3bc9ba8, checked in by casties, 12 years ago

new internal actor class for creator.

File size: 1.1 KB
Line 
1/**
2 *
3 */
4package de.mpiwg.itgroup.annotations;
5
6/**
7 * @author casties
8 *
9 */
10public class Actor {
11
12    public boolean isGroup;
13    public String uri;
14    public String name;
15   
16    /**
17     * @param isGroup
18     * @param id
19     * @param uri
20     * @param name
21     */
22    public Actor(boolean isGroup, String uri, String name) {
23        super();
24        this.isGroup = isGroup;
25        this.uri = uri;
26        this.name = name;
27    }
28   
29    /**
30     * @return the isGroup
31     */
32    public boolean isGroup() {
33        return isGroup;
34    }
35    /**
36     * @param isGroup the isGroup to set
37     */
38    public void setGroup(boolean isGroup) {
39        this.isGroup = isGroup;
40    }
41    /**
42     * @return the uri
43     */
44    public String getUri() {
45        return uri;
46    }
47    /**
48     * @param uri the uri to set
49     */
50    public void setUri(String uri) {
51        this.uri = uri;
52    }
53    /**
54     * @return the name
55     */
56    public String getName() {
57        return name;
58    }
59    /**
60     * @param name the name to set
61     */
62    public void setName(String name) {
63        this.name = name;
64    }
65}
Note: See TracBrowser for help on using the repository browser.