/**
 * Copyright <YEAR> SPeCS.
 * 
 * Licensed 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. under the License.
 */

package <PACKAGE>;

import <BASE_NODE>;
import <ABSTRACT_QUALIFIED_NAME>;

/**
 * Auto-Generated class for join point <CONCRETE_NAME>
 * This class is overwritten by the Weaver Generator.
 * 
 * 
 * @author Lara Weaver Generator
 */
public class <CONCRETE_NAME> extends <ABSTRACT_NAME> {

    private final <SPECIFIC_NODE_NAME> node;

    public <CONCRETE_NAME>(<SPECIFIC_NODE_NAME> <JP_NAME>) {
        super(<JP_NAME>); // Initialize with node
        node = <JP_NAME>;
    }


    @Override
    public <SPECIFIC_NODE_NAME> getNode() {
        return node;
    }

}
