1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 06:35:50 +02:00

Fix warnings in dstore.doc.isv build

This commit is contained in:
Martin Oberhuber 2006-07-27 13:39:31 +00:00
parent 020e4a2dee
commit d337eab9cc
7 changed files with 10 additions and 13 deletions

View file

@ -144,7 +144,7 @@ public class ClientCommandHandler extends CommandHandler
* @param bytes the bytes of a file to send * @param bytes the bytes of a file to send
* @param size the number of bytes to send * @param size the number of bytes to send
* @param binary indicates whether to send the bytes as binary or unicode * @param binary indicates whether to send the bytes as binary or unicode
* @param bytesStreamHandlerId indicates wwhich byte stream handler should receive the bytes * @param byteStreamHandlerId indicates wwhich byte stream handler should receive the bytes
*/ */
public synchronized void sendFile(String fileName, byte[] bytes, int size, boolean binary, String byteStreamHandlerId) public synchronized void sendFile(String fileName, byte[] bytes, int size, boolean binary, String byteStreamHandlerId)
{ {

View file

@ -48,7 +48,7 @@ public class ClassByteStreamHandler implements IClassByteStreamHandler
/** /**
* Contructor * Contructor
* @param dataStore the DataStore instance * @param dataStore the DataStore instance
* @param the log in which to log status and messages * @param log the log in which to log status and messages
*/ */
public ClassByteStreamHandler(DataStore dataStore, DataElement log) public ClassByteStreamHandler(DataStore dataStore, DataElement log)
{ {

View file

@ -34,7 +34,6 @@ public class ClassRequest
/** /**
* Constructs a new ClassRequest * Constructs a new ClassRequest
* @param className The name of the class requested * @param className The name of the class requested
* @param Thread optional thread that requested the class
* @param synchronous whether or not the request is synchronous * @param synchronous whether or not the request is synchronous
*/ */
public ClassRequest(String className, boolean synchronous) public ClassRequest(String className, boolean synchronous)

View file

@ -271,7 +271,7 @@ public class RemoteClassLoader extends ClassLoader
* class has been loaded. * class has been loaded.
* @param className the name of the class to receive * @param className the name of the class to receive
* @param bytes the bytes in the class * @param bytes the bytes in the class
* @param the size of the class * @param size the size of the class
*/ */
public synchronized void receiveClass(String className, byte[] bytes, int size) public synchronized void receiveClass(String className, byte[] bytes, int size)
{ {

View file

@ -270,7 +270,7 @@ public final class DataStore
/** /**
* Sets the loaders for this <code>DataStore</code>. The loaders are used to load miners (extension tools). * Sets the loaders for this <code>DataStore</code>. The loaders are used to load miners (extension tools).
* *
* @param loader the loader for the miners this <code>DataStore</code> will be using * @param loaders the loaders for the miners this <code>DataStore</code> will be using
*/ */
public void setLoaders(ArrayList loaders) public void setLoaders(ArrayList loaders)
{ {
@ -370,7 +370,7 @@ public final class DataStore
/** /**
* Tells the <code>DataStore</code> where to find the miners which it needs to load. * Tells the <code>DataStore</code> where to find the miners which it needs to load.
* *
* @param minersLocation a <code>DataElement</code> representing the location of the miners * @param location a <code>DataElement</code> representing the location of the miners
*/ */
public void addMinersLocation(DataElement location) public void addMinersLocation(DataElement location)
{ {
@ -757,7 +757,7 @@ public final class DataStore
/** /**
* Returns the attribute indicated by an index. * Returns the attribute indicated by an index.
* *
* @param the index of the attribute to get * @param attribute the index of the attribute to get
* @return the attribute * @return the attribute
*/ */
public String getAttribute(int attribute) public String getAttribute(int attribute)
@ -922,7 +922,6 @@ public final class DataStore
* @param from the element that references the other elements * @param from the element that references the other elements
* @param to a list of elements that from references * @param to a list of elements that from references
* @param type the string that represents the type of relationships between from and to * @param type the string that represents the type of relationships between from and to
* @return the new reference
*/ */
public void createReferences(DataElement from, ArrayList to, String type) public void createReferences(DataElement from, ArrayList to, String type)
{ {
@ -2317,8 +2316,8 @@ public final class DataStore
* Creates and issues a synchronized command. * Creates and issues a synchronized command.
* *
* @param commandDescriptor the comamnd descriptor for the command * @param commandDescriptor the comamnd descriptor for the command
* @param arguments the arguments for the command
* @param dataObject the subject of the command * @param dataObject the subject of the command
* @param noRef and indication of whether the subject should be referenced or not
* @return the status of the command * @return the status of the command
*/ */
public DataElement synchronizedCommand(DataElement commandDescriptor, ArrayList arguments, DataElement dataObject) public DataElement synchronizedCommand(DataElement commandDescriptor, ArrayList arguments, DataElement dataObject)
@ -2487,7 +2486,7 @@ public final class DataStore
/** /**
* Find a command descriptor element in the schema with the given value. * Find a command descriptor element in the schema with the given value.
* *
* @param object the object descriptor representing the type of object that can issue such a command * @param descriptor the object descriptor representing the type of object that can issue such a command
* @param keyName the value of the command to search for * @param keyName the value of the command to search for
* @param depth the depth of abstraction to search * @param depth the depth of abstraction to search
* @return the command descriptor for the specified command * @return the command descriptor for the specified command
@ -2621,7 +2620,6 @@ public final class DataStore
* Finds all the deleted elements * Finds all the deleted elements
* *
* @param root where to search from * @param root where to search from
* @param type the descriptor representing the type of the objects to search for
* @return a list of elements * @return a list of elements
*/ */
public synchronized List findDeleted(DataElement root) public synchronized List findDeleted(DataElement root)

View file

@ -43,7 +43,7 @@ public interface ISchemaRegistry
/** /**
* Returns an <code>ExternalLoader</code> for the specified qualified class name * Returns an <code>ExternalLoader</code> for the specified qualified class name
* @param qualfiedClassName the qualified class name of an external tool * @param qualifiedClassName the qualified class name of an external tool
* @return the external loader that can load to specified class * @return the external loader that can load to specified class
*/ */
public ExternalLoader getLoaderFor(String qualifiedClassName); public ExternalLoader getLoaderFor(String qualifiedClassName);

View file

@ -387,7 +387,7 @@ public class ServerUpdateHandler extends UpdateHandler
* Implemented to provide the means by which classes are sent * Implemented to provide the means by which classes are sent
* across the comm channel. * across the comm channel.
* @param className the name of the class to send * @param className the name of the class to send
* @param classbyteStreamHandlerId the name of the byte stream handler to use to receive the class * @param classByteStreamHandlerId the name of the byte stream handler to use to receive the class
*/ */
public synchronized void sendClass(String className, String classByteStreamHandlerId) public synchronized void sendClass(String className, String classByteStreamHandlerId)
{ {