added another test class

This commit is contained in:
stfm
2015-03-11 01:28:20 +01:00
parent c6e2aab51b
commit 4839710bca

View File

@@ -0,0 +1,27 @@
package org.stfm.texdoclet;
/**
* This class is for testing Java syntax not present in implementation code.
*
* @author Stefan Marx
*/
public class MiscTest {
/** An array of objects */
public Object[] objects;
/**
* @return objects
*/
public Object[] getObject() {
return this.objects;
}
/**
* @param object the object
*/
public void setObject(final Object[] objects) {
this.objects = objects;
}
}