blob: 924ea203646ad9a1d2372b1391ae892432f3e7f9 [file] [log] [blame]
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.acme;
/**
* @author Kohsuke Kawaguchi
*/
public class Bar {
// in this bean we bind properties, just to show that we can.
private int x,y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public String toString() {
return "Bar[x="+x+",y="+y+"]";
}
}