# ignite-63
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/91d2b898 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/91d2b898 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/91d2b898 Branch: refs/heads/sprint-1 Commit: 91d2b89863db37c40489bedc5b046bc5b7e93928 Parents: 50d64b0 Author: sboikov <sboi...@gridgain.com> Authored: Fri Jan 23 16:16:06 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Fri Jan 23 16:16:06 2015 +0300 ---------------------------------------------------------------------- .../ignite/gridify/hierarchy/SuperTarget.java | 53 ++++++++++++++++++++ 1 file changed, 53 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/91d2b898/modules/aop/src/test/java/org/apache/ignite/gridify/hierarchy/SuperTarget.java ---------------------------------------------------------------------- diff --git a/modules/aop/src/test/java/org/apache/ignite/gridify/hierarchy/SuperTarget.java b/modules/aop/src/test/java/org/apache/ignite/gridify/hierarchy/SuperTarget.java new file mode 100644 index 0000000..c2ba1b0 --- /dev/null +++ b/modules/aop/src/test/java/org/apache/ignite/gridify/hierarchy/SuperTarget.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.gridify.hierarchy; + +import org.apache.ignite.compute.gridify.*; + +/** + * Target base class. + */ +public abstract class SuperTarget { + /** + * @return Always returns "SuperTarget.methodA()". + */ + @Gridify(gridName = "GridifyHierarchyTest") + protected String methodA() { + System.out.println(">>> Called SuperTarget.methodA()"); + + return "SuperTarget.methodA()"; + } + + /** + * @return "SuperTarget.methodC()" string. + */ + protected String methodB() { + return methodC(); + } + + /** + * @return "SuperTarget.methodC()" string. + */ + @Gridify(gridName = "GridifyHierarchyTest") + private String methodC() { + System.out.println(">>> Called SuperTarget.methodC()"); + + return "SuperTarget.methodC()"; + } + +}