/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This file is part of AntTask. * * See the file "LICENSE" for copyright information and the * * terms and conditions for copying, distribution and * * modification of AntTask. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package org.apache.tools.ant; import java.io.*; public class Project { public static final int MSG_ERR = 0; public static final int MSG_INFO = 2; public static final int MSG_VERBOSE = 3; public File resolveFile(java.lang.String fileName) { return null; } public void log(String msg, int msgLevel) { } }