My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

package com.beanie.example.list.classes;

public class Vehicle {
private String name;

private String group;

public String getGroup() {
return group;
}

public void setGroup(String group) {
this.group = group;
}

public Vehicle(String name) {
this.name = name;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}

Change log

r15 by coomar.101 on Sep 16, 2010   Diff
Initial Commit
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 453 bytes, 28 lines
Powered by Google Project Hosting