01: /**
02: * Copyright 2007 Jens Dietrich Licensed under the Apache License, Version 2.0 (the "License");
03: * you may not use this file except in compliance with the License.
04: * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
05: * Unless required by applicable law or agreed to in writing, software distributed under the
06: * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
07: * either express or implied. See the License for the specific language governing permissions
08: * and limitations under the License.
09: */package test.nz.org.take.compiler.scenario12;
10:
11: public class Bean {
12: private int ranking = 0;
13:
14: public int getRanking() {
15: return ranking;
16: }
17:
18: public void setRanking(int ranking) {
19: this.ranking = ranking;
20: }
21: }
|