|
Java example source code file (NGCCRuntimeEx.java)
The NGCCRuntimeEx.java Java example source code/* * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.tools.internal.jxc; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.regex.Pattern; import com.sun.tools.internal.jxc.gen.config.NGCCRuntime; import org.xml.sax.ErrorHandler; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; /** * Controls the validating and converting of values obtained * from the config file. * * @author * Bhakti Mehta (bhakti.mehta@sun.com) */ public final class NGCCRuntimeEx extends NGCCRuntime { /** * All the errors shall be sent to this object. */ private final ErrorHandler errorHandler; public NGCCRuntimeEx(ErrorHandler errorHandler) { this.errorHandler = errorHandler; } /** * This will check if the baseDir provided by the user * in the config file exists. If not it throws an error * @param baseDir * The baseDir attribute passed by the user in the xml config file as a path * @return * The file representation of the path name */ public File getBaseDir(String baseDir) throws SAXException { File dir = new File(baseDir); if (dir.exists()) { return dir; } else { SAXParseException e = new SAXParseException( Messages.BASEDIR_DOESNT_EXIST.format(dir.getAbsolutePath()), getLocator()); errorHandler.error(e); throw e; // we can't recover from this error } } /** * This takes the include list provided by the user in the config file * It converts the user values to {@link Pattern} * @param includeContent * The include list specified by the user * @return * A list of regular expression patterns {@link Pattern} */ public List<Pattern> getIncludePatterns(List Other Java examples (source code examples)Here is a short list of links related to this Java NGCCRuntimeEx.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.