Biblioteca Java - Blame information for rev 18
Subversion Repositories:
(root)/Frameworks and Technologies/Neo4J Samples/Neo4JTutorial/src/main/java/com/linkscreens/graphsin/model/Person.java
Rev | Author | Line No. | Line |
---|---|---|---|
18 | mihai | 1 | package com.linkscreens.graphsin.model; |
2 | |||
3 | public class Person { | ||
4 | String email; | ||
5 | |||
6 | public Person(String email) { | ||
7 | super(); | ||
8 | this.email = email; | ||
9 | } | ||
10 | |||
11 | public String getEmail() { | ||
12 | return email; | ||
13 | } | ||
14 | |||
15 | public void setEmail(String email) { | ||
16 | this.email = email; | ||
17 | } | ||
18 | |||
19 | @Override | ||
20 | public String toString() { | ||
21 | return "Person ["+email+"]"; | ||
22 | } | ||
23 | |||
24 | } |