buildframework/helium/sf/java/core/src/com/nokia/helium/core/ant/types/HlmPostDefImpl.java
changeset 628 7c4a911dc066
parent 588 c7c26511138f
child 629 541af5ee3ed9
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
     1 /*
       
     2 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.helium.core.ant.types;
       
    20 
       
    21 import org.apache.tools.ant.Project;
       
    22 import org.apache.tools.ant.types.DataType;
       
    23 import org.apache.log4j.Logger;
       
    24 
       
    25 import com.nokia.helium.core.ant.HeliumExecutor;
       
    26 import com.nokia.helium.core.ant.HlmDefinition;
       
    27 
       
    28 /**
       
    29  * Implement an abstract post-action.
       
    30  */
       
    31 public class HlmPostDefImpl extends DataType implements HlmDefinition {
       
    32     private Logger log = Logger.getLogger(HeliumExecutor.class);
       
    33     
       
    34     /**
       
    35      * Do nothing.
       
    36      */
       
    37     public void execute(Project prj, String module, String[] targetNames) {
       
    38         // Empty method. Implemented by extending classes.
       
    39     }
       
    40 }