1 /** 2 * Copyright (c) 2008, SnakeYAML 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except 5 * in compliance with the License. You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software distributed under the License 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 11 * or implied. See the License for the specific language governing permissions and limitations under 12 * the License. 13 */ 14 package org.yaml.snakeyaml.constructor; 15 16 public class Parent1 { 17 18 private String id; 19 private Child1 child; 20 getId()21 public String getId() { 22 return id; 23 } 24 setId(String id)25 public void setId(String id) { 26 this.id = id; 27 } 28 getChild()29 public Child1 getChild() { 30 return child; 31 } 32 setChild(Child1 child)33 public void setChild(Child1 child) { 34 this.child = child; 35 } 36 } 37