Fix broken javadoc links and params to kill my Eclipse warnings. This includes
importing receivers from their senders to satisfy their links. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5333 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -453,8 +453,7 @@ public class DObject
|
||||
return;
|
||||
}
|
||||
|
||||
for (int ii = 0, ll = _subs.length; ii < ll; ii++) {
|
||||
Object sub = _subs[ii];
|
||||
for (Object sub : _subs) {
|
||||
try {
|
||||
if (sub != null && sub instanceof ProxySubscriber) {
|
||||
((ProxySubscriber)sub).eventReceived(event);
|
||||
@@ -569,7 +568,7 @@ public class DObject
|
||||
* distributed object manager. This is called by the distributed object manager when an object
|
||||
* is created and registered with the system.
|
||||
*
|
||||
* @see DObjectManager#createObject
|
||||
* @see RootDObjectManager#registerObject(DObject)
|
||||
*/
|
||||
public void setManager (DObjectManager omgr)
|
||||
{
|
||||
@@ -580,7 +579,7 @@ public class DObject
|
||||
* Don't call this function. It is called by the distributed object manager when an object is
|
||||
* created and registered with the system.
|
||||
*
|
||||
* @see DObjectManager#createObject
|
||||
* @see RootDObjectManager#registerObject(DObject)
|
||||
*/
|
||||
public void setOid (int oid)
|
||||
{
|
||||
|
||||
@@ -45,7 +45,7 @@ public class ElementUpdatedEvent extends NamedEvent
|
||||
* @param name the name of the attribute (data member) for which an element has changed.
|
||||
* @param value the new value of the element (in the case of primitive types, the
|
||||
* reflection-defined object-alternative is used).
|
||||
* @param oldValue the previous value of the element (in the case of primitive types, the
|
||||
* @param ovalue the previous value of the element (in the case of primitive types, the
|
||||
* reflection-defined object-alternative is used).
|
||||
* @param index the index in the array of the updated element.
|
||||
*/
|
||||
@@ -62,7 +62,7 @@ public class ElementUpdatedEvent extends NamedEvent
|
||||
* @param name the name of the attribute (data member) for which an element has changed.
|
||||
* @param value the new value of the element (in the case of primitive types, the
|
||||
* reflection-defined object-alternative is used).
|
||||
* @param oldValue the previous value of the element (in the case of primitive types, the
|
||||
* @param ovalue the previous value of the element (in the case of primitive types, the
|
||||
* reflection-defined object-alternative is used).
|
||||
* @param index the index in the array of the updated element.
|
||||
* @param transport a hint as to the type of transport desired for the event.
|
||||
|
||||
Reference in New Issue
Block a user