You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2005/01/28 17:49:34 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/native2ascii Native2AsciiAdapter.java

bodewig     2005/01/28 08:49:34

  Added:       src/main/org/apache/tools/ant/taskdefs/optional/native2ascii
                        Native2AsciiAdapter.java
  Log:
  First step towards a facade implementation of native2ascii, will support Sun and Kaffe versions
  
  Revision  Changes    Path
  1.1                  ant/src/main/org/apache/tools/ant/taskdefs/optional/native2ascii/Native2AsciiAdapter.java
  
  Index: Native2AsciiAdapter.java
  ===================================================================
  /*
   * Copyright  2005 The Apache Software Foundation
   *
   *  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.
   *
   */
  package org.apache.tools.ant.taskdef.optional.native2ascii;
  
  import java.io.File;
  import org.apache.tools.ant.taskdef.optional.Native2Ascii;
  
  public interface Native2AsciiAdapter {
      boolean convert(Native2Ascii args, File srcFile, File destFile);
  }
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org