blob: d51e0b8b31480a5e761a9eef20484380074c77b2 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.javabeans;
public class TriangleBean {
private String name;
private Shape shape;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Shape getShape() {
return shape;
}
public void setShape(Shape shape) {
this.shape = shape;
}
}