aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/yaml/snakeyaml/javabeans/House.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/yaml/snakeyaml/javabeans/House.java')
-rw-r--r--src/test/java/org/yaml/snakeyaml/javabeans/House.java89
1 files changed, 44 insertions, 45 deletions
diff --git a/src/test/java/org/yaml/snakeyaml/javabeans/House.java b/src/test/java/org/yaml/snakeyaml/javabeans/House.java
index 41ba335a..81190bde 100644
--- a/src/test/java/org/yaml/snakeyaml/javabeans/House.java
+++ b/src/test/java/org/yaml/snakeyaml/javabeans/House.java
@@ -1,17 +1,15 @@
/**
- * Copyright (c) 2008, http://www.snakeyaml.org
+ * Copyright (c) 2008, SnakeYAML
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
*/
package org.yaml.snakeyaml.javabeans;
@@ -19,50 +17,51 @@ import java.util.List;
import java.util.Map;
public class House {
- private String street;
- private int number;
- private List<Room> rooms;
- private FrontDoor frontDoor;
- private Map<String, String> reminders;
- public String getStreet() {
- return street;
- }
+ private String street;
+ private int number;
+ private List<Room> rooms;
+ private FrontDoor frontDoor;
+ private Map<String, String> reminders;
- public void setStreet(String street) {
- this.street = street;
- }
+ public String getStreet() {
+ return street;
+ }
- public int getNumber() {
- return number;
- }
+ public void setStreet(String street) {
+ this.street = street;
+ }
- public void setNumber(int number) {
- this.number = number;
- }
+ public int getNumber() {
+ return number;
+ }
- public List<Room> getRooms() {
- return rooms;
- }
+ public void setNumber(int number) {
+ this.number = number;
+ }
- public void setRooms(List<Room> rooms) {
- this.rooms = rooms;
- }
+ public List<Room> getRooms() {
+ return rooms;
+ }
- public FrontDoor getFrontDoor() {
- return frontDoor;
- }
+ public void setRooms(List<Room> rooms) {
+ this.rooms = rooms;
+ }
- public void setFrontDoor(FrontDoor frontDoor) {
- this.frontDoor = frontDoor;
- }
+ public FrontDoor getFrontDoor() {
+ return frontDoor;
+ }
- public Map<String, String> getReminders() {
- return reminders;
- }
+ public void setFrontDoor(FrontDoor frontDoor) {
+ this.frontDoor = frontDoor;
+ }
- public void setReminders(Map<String, String> reminders) {
- this.reminders = reminders;
- }
+ public Map<String, String> getReminders() {
+ return reminders;
+ }
+
+ public void setReminders(Map<String, String> reminders) {
+ this.reminders = reminders;
+ }
}