alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.tasklist.pmd;

import net.sourceforge.pmd.RuleViolation;
import pmd.*;
import javax.swing.text.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import org.openide.explorer.view.*;
import org.openide.nodes.*;
import org.openide.loaders.DataObject;
import org.openide.text.Line;
import org.openide.text.DataEditorSupport;
import org.openide.util.NbBundle;

import org.netbeans.modules.tasklist.core.TLUtils;
import org.netbeans.modules.tasklist.core.ConfPanel;
import org.netbeans.modules.tasklist.client.Suggestion;
import org.netbeans.modules.tasklist.client.SuggestionPerformer;

/**
 * Perform import statement confirmation & removal
 * 

* @author Tor Norbye */ public class ImportPerformer implements SuggestionPerformer { private Line line; private RuleViolation violation; private boolean comment; ImportPerformer(Line line, RuleViolation violation, boolean comment) { this.line = line; this.violation = violation; } public void perform(Suggestion s) { // Remove the particular line if (comment) { TLUtils.commentLine(line, "import "); // NOI18N } else { TLUtils.deleteLine(line, "import "); // NOI18N } } public boolean hasConfirmation() { return true; } public Object getConfirmation(Suggestion s) { DataObject dao = DataEditorSupport.findDataObject(line); int linenumber = line.getLineNumber(); String filename = dao.getPrimaryFile().getNameExt(); String ruleDesc = violation.getRule().getDescription(); String ruleExample = violation.getRule().getExample(); StringBuffer sb = new StringBuffer(200); String beforeContents = null; String afterContents = null; String afterDesc = null; String beforeDesc = null; if (comment) { // TODO - something special if DontImportJavaLang beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationBefore"); // NOI18N afterDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationAfter"); // NOI18N Line l = line; sb.append(""); // NOI18N TLUtils.appendSurroundingLine(sb, l, -1); sb.append("
"); // NOI18N sb.append(line.getText()); sb.append("
"); // NOI18N TLUtils.appendSurroundingLine(sb, l, +1); sb.append(""); // NOI18N beforeContents = sb.toString(); sb.setLength(0); sb.append(""); // NOI18N TLUtils.appendSurroundingLine(sb, l, -1); sb.append("
// "); // NOI18N sb.append(line.getText()); sb.append("
"); // NOI18N TLUtils.appendSurroundingLine(sb, l, +1); sb.append(""); // NOI18N afterContents = sb.toString(); } else { String rulename = violation.getRule().getName(); if (rulename.equals("UnusedImports")) { // NOI18N beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationUnused"); // NOI18N } else if (rulename.equals("ImportFromSamePackage")) { // NOI18N beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationSame"); // NOI18N } else if (rulename.equals("DontImportJavaLang")) { // NOI18N beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationLang"); // NOI18N } else if (rulename.equals("DuplicateImports")) { // NOI18N beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationDuplicate"); // NOI18N } else { beforeDesc = NbBundle.getMessage(ImportPerformer.class, "ImportConfirmationOther"); // NOI18N } Line l = line; sb.append(""); // NOI18N TLUtils.appendSurroundingLine(sb, l, -1); sb.append("
"); sb.append(""); // NOI18N sb.append(line.getText()); sb.append(""); // NOI18N sb.append("
"); // NOI18N TLUtils.appendSurroundingLine(sb, l, +1); sb.append(""); // NOI18N beforeContents = sb.toString(); } return new ConfPanel(beforeDesc, beforeContents, afterDesc, afterContents, filename, linenumber, ViolationProvider.getBottomPanel(ruleDesc, ruleExample)); } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.