• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright (c) 2008, http://www.snakeyaml.org
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.yaml.snakeyaml.ruby;
17 
18 import java.util.List;
19 
20 public class Sub2 {
21     private String att1;
22     private List<String> att2;
23     private int att3;
24 
getAtt1()25     public String getAtt1() {
26         return att1;
27     }
28 
setAtt1(String att1)29     public void setAtt1(String att1) {
30         this.att1 = att1;
31     }
32 
getAtt2()33     public List<String> getAtt2() {
34         return att2;
35     }
36 
setAtt2(List<String> att2)37     public void setAtt2(List<String> att2) {
38         this.att2 = att2;
39     }
40 
getAtt3()41     public int getAtt3() {
42         return att3;
43     }
44 
setAtt3(int att3)45     public void setAtt3(int att3) {
46         this.att3 = att3;
47     }
48 
49 }
50