fdo#51304: Remove the author of some java source files
This patch remove some '@author' for Java souce files, and removes some commented code founded when removing the '@author'. Change-Id: I7bff1507212e967069f3d18e6c1040f69501694a Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
This commit is contained in:
committed by
Noel Power
parent
30dba81595
commit
6595e392eb
@@ -41,9 +41,6 @@ import com.sun.star.uri.XVndSunStarScriptUrl;
|
||||
/**
|
||||
* The <code>ParcelContainer</code> object is used to store the
|
||||
* ScripingFramework specific Libraries.
|
||||
*
|
||||
* @author
|
||||
* @created
|
||||
*/
|
||||
|
||||
public class ParcelContainer implements XNameAccess
|
||||
|
@@ -26,8 +26,6 @@ import com.sun.star.uno.XComponentContext;
|
||||
|
||||
/**
|
||||
* Class Loader Factory
|
||||
*
|
||||
* @author Noel Power
|
||||
*/
|
||||
public class ClassLoaderFactory
|
||||
{
|
||||
|
@@ -25,12 +25,6 @@ import com.sun.star.document.XScriptInvocationContext;
|
||||
|
||||
import com.sun.star.script.provider.XScriptContext;
|
||||
|
||||
|
||||
/**
|
||||
* Description of the Class
|
||||
*
|
||||
* @author Noel Power
|
||||
*/
|
||||
public class EditorScriptContext implements XScriptContext
|
||||
{
|
||||
private XDesktop m_xDeskTop;
|
||||
@@ -43,7 +37,6 @@ public class EditorScriptContext implements XScriptContext
|
||||
this.m_xDeskTop = xDesktop;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
/**
|
||||
Obtain the document reference on which the script can operate
|
||||
|
||||
|
@@ -31,20 +31,8 @@ import com.sun.star.script.provider.XScriptContext;
|
||||
|
||||
import com.sun.star.script.framework.log.LogUtils;
|
||||
|
||||
|
||||
/**
|
||||
* Description of the Class
|
||||
*
|
||||
* @author Noel Power
|
||||
*/
|
||||
public class ScriptContext extends PropertySet implements XScriptContext
|
||||
{
|
||||
/**
|
||||
* Description of the Class
|
||||
*
|
||||
* @author John Rice
|
||||
*/
|
||||
|
||||
public final static String HM_DOC_REF = "DocumentReference";
|
||||
public final static String HM_DESKTOP = "Desktop";
|
||||
public final static String HM_COMPONENT_CONTEXT = "ComponentContext";
|
||||
|
@@ -22,8 +22,6 @@ package com.sun.star.script.framework.provider.java;
|
||||
* The Resolver interface is an interface common to all classes which
|
||||
* want to implement an algorithm for obtaining a ScriptProxy object
|
||||
* for a particular ScriptDescriptor and Class
|
||||
*
|
||||
* @author Tomas O'Connor
|
||||
*/
|
||||
|
||||
public interface Resolver {
|
||||
|
@@ -25,8 +25,6 @@ import java.util.StringTokenizer;
|
||||
/**
|
||||
* The <code>ScriptDescriptor</code> object is used to store the search
|
||||
* criteria that should be used for finding a particular script
|
||||
*
|
||||
* @author Tomas O'Connor
|
||||
*/
|
||||
public class ScriptDescriptor
|
||||
{
|
||||
@@ -36,7 +34,6 @@ public class ScriptDescriptor
|
||||
private List<String> m_classpath;
|
||||
private ArrayList<Class<?>> m_argumentTypes = new ArrayList<Class<?>>( 11 );
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a ScriptDescriptor for the given name
|
||||
*
|
||||
@@ -58,7 +55,6 @@ public class ScriptDescriptor
|
||||
this.m_className = name.substring( 0, idx );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets the fully qualified name of this <code>ScriptDescriptor</code>
|
||||
*
|
||||
|
@@ -42,18 +42,9 @@ import com.sun.star.script.framework.container.ScriptMetaData;
|
||||
|
||||
import com.sun.star.script.framework.provider.*;
|
||||
import com.sun.star.script.framework.log.LogUtils;
|
||||
/**
|
||||
* Description of the Class
|
||||
*
|
||||
* @author Noel Power
|
||||
*/
|
||||
|
||||
public class ScriptProviderForJava
|
||||
{
|
||||
/**
|
||||
* Description of the Class
|
||||
*
|
||||
* @author Noel Power
|
||||
*/
|
||||
public static class _ScriptProviderForJava extends ScriptProvider
|
||||
{
|
||||
private Resolver m_resolutionPolicy = new StrictResolver();
|
||||
|
@@ -24,7 +24,6 @@ import java.lang.reflect.InvocationTargetException;
|
||||
/**
|
||||
* A ScriptProxy object acts as a proxy for a Java <code>Method</code>
|
||||
*
|
||||
* @author Tomas O'Connor
|
||||
* @see java.lang.reflect.Method
|
||||
*/
|
||||
public class ScriptProxy
|
||||
|
@@ -27,8 +27,6 @@ import com.sun.star.script.framework.log.LogUtils;
|
||||
* the Resolver strategy. It will only return a ScriptProxy object if a
|
||||
* method accepting all of the arguments specified in the ScriptDescriptor
|
||||
* can be found in the Class.
|
||||
*
|
||||
* @author Tomas O'Connor
|
||||
*/
|
||||
public class StrictResolver implements Resolver
|
||||
{
|
||||
@@ -40,7 +38,6 @@ public class StrictResolver implements Resolver
|
||||
LogUtils.DEBUG( this.getClass().getName() + " created" );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns a ScriptProxy object for the given ScriptDescriptor and Class.
|
||||
* Only a strict match will be returned ie. where all of the arguments in
|
||||
|
@@ -43,7 +43,6 @@ import org.netbeans.editor.ext.java.*;
|
||||
/**
|
||||
* Java editor kit with appropriate document
|
||||
*
|
||||
* @author Miloslav Metelka
|
||||
* @version 1.00
|
||||
*/
|
||||
|
||||
@@ -117,8 +116,6 @@ public class JavaKit extends ExtKit {
|
||||
|
||||
/**
|
||||
* DataAccessor for parser DB files via URL streams
|
||||
*
|
||||
* @author Petr Nejedly
|
||||
*/
|
||||
public static class URLAccessor implements DataAccessor {
|
||||
|
||||
|
@@ -24,8 +24,6 @@ import org.openide.util.RequestProcessor;
|
||||
import org.openide.util.actions.CookieAction;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author adams
|
||||
* @version 1.0
|
||||
*/
|
||||
public class MountDocumentAction extends CookieAction
|
||||
|
@@ -24,8 +24,6 @@ import org.openide.util.RequestProcessor;
|
||||
import org.openide.util.actions.CookieAction;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author adams
|
||||
* @version 1.0
|
||||
*/
|
||||
public class MountParcelAction extends CookieAction
|
||||
|
@@ -30,8 +30,6 @@ import org.openide.windows.CloneableOpenSupport;
|
||||
import org.openoffice.netbeans.modules.office.loader.ParcelDescriptorDataObject;
|
||||
|
||||
/** Support for editing a data object as text.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
// Replace OpenCookie with EditCookie or maybe ViewCookie as desired:
|
||||
public class ParcelDescriptorEditorSupport extends DataEditorSupport implements EditorCookie, OpenCookie, CloseCookie, PrintCookie {
|
||||
|
@@ -30,8 +30,6 @@ import org.openide.util.actions.SystemAction;
|
||||
import org.openoffice.netbeans.modules.office.actions.MountDocumentAction;
|
||||
|
||||
/** Recognizes single files in the Repository as being of a certain type.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class OfficeDocumentDataLoader extends UniFileLoader {
|
||||
|
||||
|
@@ -31,13 +31,10 @@ import org.openoffice.netbeans.modules.office.actions.OfficeDocumentCookie;
|
||||
import org.openoffice.netbeans.modules.office.nodes.OfficeDocumentChildren;
|
||||
|
||||
/** A node to represent this object.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class OfficeDocumentDataNode extends DataNode {
|
||||
|
||||
public OfficeDocumentDataNode(OfficeDocumentDataObject obj) {
|
||||
// this(obj, Children.LEAF);
|
||||
this(obj, new OfficeDocumentChildren((OfficeDocumentCookie)
|
||||
obj.getCookie(OfficeDocumentCookie.class)));
|
||||
}
|
||||
|
@@ -26,8 +26,6 @@ import org.openide.util.NbBundle;
|
||||
import org.openide.util.Utilities;
|
||||
|
||||
/** Description of {@link ParcelFolderDataLoader}.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelContentsFolderDataLoaderBeanInfo extends SimpleBeanInfo {
|
||||
|
||||
|
@@ -31,8 +31,6 @@ import org.openoffice.netbeans.modules.office.actions.*;
|
||||
import org.openoffice.idesupport.zip.ParcelZipper;
|
||||
|
||||
/** Recognizes single files in the Repository as being of a certain type.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDataLoader extends UniFileLoader {
|
||||
|
||||
|
@@ -26,8 +26,6 @@ import org.openide.util.NbBundle;
|
||||
import org.openide.util.Utilities;
|
||||
|
||||
/** Description of {@link ParcelDataLoader}.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDataLoaderBeanInfo extends SimpleBeanInfo {
|
||||
|
||||
|
@@ -33,8 +33,6 @@ import org.openide.windows.OutputWriter;
|
||||
import org.openoffice.netbeans.modules.office.actions.ParcelCookie;
|
||||
|
||||
/** A node to represent this object.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDataNode extends DataNode {
|
||||
|
||||
|
@@ -28,8 +28,6 @@ import org.openide.util.HelpCtx;
|
||||
import org.openoffice.netbeans.modules.office.actions.*;
|
||||
|
||||
/** Represents a Parcel object in the Repository.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDataObject extends MultiDataObject {
|
||||
|
||||
|
@@ -29,8 +29,6 @@ import org.openide.util.actions.SystemAction;
|
||||
import org.openoffice.idesupport.OfficeDocument;
|
||||
|
||||
/** Recognizes single files in the Repository as being of a certain type.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDescriptorDataLoader extends UniFileLoader {
|
||||
|
||||
|
@@ -26,8 +26,6 @@ import org.openide.util.NbBundle;
|
||||
import org.openide.util.Utilities;
|
||||
|
||||
/** Description of {@link ParcelDescriptorDataLoader}.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDescriptorDataLoaderBeanInfo extends SimpleBeanInfo {
|
||||
|
||||
|
@@ -26,8 +26,6 @@ import org.openoffice.netbeans.modules.office.nodes.*;
|
||||
import org.openoffice.netbeans.modules.office.actions.*;
|
||||
|
||||
/** A node to represent this object.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDescriptorDataNode extends DataNode {
|
||||
|
||||
|
@@ -29,8 +29,6 @@ import org.openoffice.netbeans.modules.office.actions.ParcelDescriptorEditorSupp
|
||||
import org.openoffice.netbeans.modules.office.actions.ParcelDescriptorParserSupport;
|
||||
|
||||
/** Represents a ParcelDescriptor object in the Repository.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDescriptorDataObject extends MultiDataObject {
|
||||
|
||||
|
@@ -31,8 +31,6 @@ import org.openoffice.idesupport.zip.ParcelZipper;
|
||||
import org.openoffice.netbeans.modules.office.actions.*;
|
||||
|
||||
/** Recognizes single files in the Repository as being of a certain type.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
|
||||
public class ParcelFolderDataLoader extends UniFileLoader {
|
||||
|
@@ -26,8 +26,6 @@ import org.openide.util.NbBundle;
|
||||
import org.openide.util.Utilities;
|
||||
|
||||
/** Description of {@link ParcelFolderDataLoader}.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelFolderDataLoaderBeanInfo extends SimpleBeanInfo {
|
||||
|
||||
|
@@ -30,8 +30,6 @@ import org.openoffice.netbeans.modules.office.actions.ParcelDescriptorParserCook
|
||||
|
||||
/** List of children of a containing node.
|
||||
* Remember to document what your permitted keys are!
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelDescriptorChildren extends Children.Keys implements ChangeListener {
|
||||
|
||||
|
@@ -27,8 +27,6 @@ import org.openide.util.NbBundle;
|
||||
import org.openide.util.actions.SystemAction;
|
||||
|
||||
/** A simple node with no children.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ScriptNode extends AbstractNode {
|
||||
private Element element;
|
||||
|
@@ -31,8 +31,6 @@ import org.openoffice.idesupport.SVersionRCFile;
|
||||
import org.openoffice.idesupport.OfficeInstallation;
|
||||
|
||||
/** Options for something or other.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class OfficeSettings extends SystemOption {
|
||||
|
||||
|
@@ -32,8 +32,6 @@ import org.openoffice.idesupport.OfficeInstallation;
|
||||
import org.openoffice.netbeans.modules.office.wizard.SelectPathPanel;
|
||||
|
||||
/** Description of {@link OfficeSettings}.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class OfficeSettingsBeanInfo extends SimpleBeanInfo {
|
||||
|
||||
|
@@ -28,8 +28,6 @@ import org.openide.WizardDescriptor;
|
||||
import org.openide.util.NbBundle;
|
||||
|
||||
/** A wizard descriptor.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class InstallationPathDescriptor extends WizardDescriptor {
|
||||
|
||||
|
@@ -33,8 +33,6 @@ import org.openide.util.NbBundle;
|
||||
/** A wizard iterator (sequence of panels).
|
||||
* Used to create a wizard. Create one or more
|
||||
* panels from template as needed too.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class InstallationPathIterator implements WizardDescriptor.Iterator {
|
||||
|
||||
|
@@ -50,8 +50,6 @@ import org.openoffice.netbeans.modules.office.utils.PackageRemover;
|
||||
* Associate this to a template inside a layer using the
|
||||
* Sequence of Panels extra property.
|
||||
* Create one or more panels from template as needed too.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class JavaScriptIterator implements TemplateWizard.Iterator {
|
||||
|
||||
|
@@ -51,8 +51,6 @@ import org.openoffice.netbeans.modules.office.filesystem.OpenOfficeDocFileSystem
|
||||
* Associate this to a template inside a layer using the
|
||||
* Sequence of Panels extra property.
|
||||
* Create one or more panels from template as needed too.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelContentsIterator implements TemplateWizard.Iterator {
|
||||
|
||||
|
@@ -34,8 +34,6 @@ import org.openide.util.NbBundle;
|
||||
|
||||
/** A single panel descriptor for a wizard.
|
||||
* You probably want to make a wizard iterator to hold it.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelPropertiesPanel implements WizardDescriptor.FinishPanel {
|
||||
|
||||
|
@@ -21,8 +21,6 @@ package org.openoffice.netbeans.modules.office.wizard;
|
||||
import org.openide.util.NbBundle;
|
||||
|
||||
/** A single panel for a wizard - the GUI portion.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class ParcelPropertiesVisualPanel extends javax.swing.JPanel {
|
||||
|
||||
|
@@ -35,8 +35,6 @@ import org.openoffice.idesupport.SVersionRCFile;
|
||||
|
||||
/** A single panel descriptor for a wizard.
|
||||
* You probably want to make a wizard iterator to hold it.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class SelectPathPanel implements WizardDescriptor.Panel /* .FinishPanel */ {
|
||||
|
||||
|
@@ -30,8 +30,6 @@ import org.openoffice.idesupport.OfficeInstallation;
|
||||
import org.openoffice.netbeans.modules.office.options.OfficeSettings;
|
||||
|
||||
/** A single panel for a wizard - the GUI portion.
|
||||
*
|
||||
* @author tomaso
|
||||
*/
|
||||
public class SelectPathVisualPanel extends javax.swing.JPanel {
|
||||
|
||||
|
Reference in New Issue
Block a user