add test class for included images

This commit is contained in:
stfm
2017-11-22 00:43:56 +01:00
parent 4dbec4744c
commit 44aed85414
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package org.stfm.texdoclet.image;
/**
* This class is for testing referenced images.
* <p>
* JPG from same package: <IMG width="100%" src="texdoclet.jpg">
* <p>
* JPG from parent package: <IMG width="100%" src="../texdoclet.jpg">
* <p>
* JPG from sub package package: <IMG width="100%" src="subpackage/texdoclet.jpg">
*
* @author Stefan Marx
*/
public class ImageTest {
/** 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;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB