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:
Marcos Paulo de Souza
2012-09-26 01:40:41 -03:00
committed by Noel Power
parent 30dba81595
commit 6595e392eb
45 changed files with 1 additions and 161 deletions

View File

@@ -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

View File

@@ -26,8 +26,6 @@ import com.sun.star.uno.XComponentContext;
/**
* Class Loader Factory
*
* @author Noel Power
*/
public class ClassLoaderFactory
{

View File

@@ -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

View File

@@ -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";

View File

@@ -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 {

View File

@@ -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>
*

View File

@@ -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();

View File

@@ -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

View File

@@ -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