~brian-thomason/+junk/groovy-1.7.2

« back to all changes in this revision

Viewing changes to src/test/gls/ch06/s05/testClasses/Tt1cgo.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:31:12 UTC
  • Revision ID: brian.thomason@canonical.com-20111220173112-u53pbzhiy5y1hau0
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2005 John G. Wilson
 
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
 */
 
17
 
 
18
package gls.ch06.s05.testClasses;
 
19
 
 
20
 
 
21
import groovy.lang.Closure;
 
22
import groovy.lang.GroovyObjectSupport;
 
23
 
 
24
/**
 
25
 * @author John Wilson
 
26
 */
 
27
 
 
28
public class Tt1cgo extends GroovyObjectSupport {
 
29
    public Closure x = new Closure(null) {
 
30
        public Object doCall(final Object params) {
 
31
            return "field";
 
32
        }
 
33
    };
 
34
 
 
35
    public Closure getX() {
 
36
        return this.p1;
 
37
    }
 
38
 
 
39
    public void setX(final Closure x) {
 
40
        this.p1 = x;
 
41
    }
 
42
 
 
43
    public String x() {
 
44
        return "method";
 
45
    }
 
46
 
 
47
    private Closure p1 = new Closure(null) {
 
48
        public Object doCall(final Object params) {
 
49
            return "property";
 
50
        }
 
51
    };
 
52
}