dv/src/main/java/com/sun/tools/xjc/addon/apache_cxf/dv/DefaultValuePlugin.java [43:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getOptionName() {
        return impl.getOptionName();
    }

    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#getUsage()
     */
    @Override
    public String getUsage() {
        return impl.getUsage();
    }

    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#run(com.sun.tools.xjc.outline.Outline,
     *   com.sun.tools.xjc.Options, org.xml.sax.ErrorHandler)
     */
    @Override
    public boolean run(Outline outline, Options opt, ErrorHandler errorHandler) throws SAXException {
        return impl.run(outline, opt, errorHandler);
    }
    
    public void onActivated(Options opts) throws BadCommandLineException {
        impl.onActivated(opts);
    }

    
    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#parseArgument(com.sun.tools.xjc.Options, java.lang.String[], int)
     */
    @Override
    public int parseArgument(Options opt, String[] args, int index) 
        throws BadCommandLineException, IOException {
        
        return impl.parseArgument(opt, args, index, this);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ts/src/main/java/com/sun/tools/xjc/addon/apache_cxf/ts/ToStringPlugin.java [43:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getOptionName() {
        return impl.getOptionName();
    }

    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#getUsage()
     */
    @Override
    public String getUsage() {
        return impl.getUsage();
    }

    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#run(com.sun.tools.xjc.outline.Outline,
     *   com.sun.tools.xjc.Options, org.xml.sax.ErrorHandler)
     */
    @Override
    public boolean run(Outline outline, Options opt, ErrorHandler errorHandler) throws SAXException {
        return impl.run(outline, opt, errorHandler);
    }

    public void onActivated(Options opts) throws BadCommandLineException {
        impl.onActivated(opts);
    }

    
    /* (non-Javadoc)
     * @see com.sun.tools.xjc.Plugin#parseArgument(com.sun.tools.xjc.Options, java.lang.String[], int)
     */
    @Override
    public int parseArgument(Options opt, String[] args, int index) 
        throws BadCommandLineException, IOException {
        
        return impl.parseArgument(opt, args, index, this);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



