@ -0,0 +1,3 @@ |
||||
bin/JavaProjectTemplate.jar |
||||
sprites |
||||
runGame.* |
@ -0,0 +1,17 @@ |
||||
#Builds and runs the project. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH} -d ${OUT_DIR} ${PROJECT_DIR}/*.java |
||||
printf "\n\n\nRunning Program...\n\n" |
||||
ORIGINAL_LOC=$(pwd) |
||||
cd $OUT_DIR |
||||
if java ${CUSTOM_PARAMS} -cp .:../lib/bin/ -XX:+UseZGC -Djava.library.path="${LIBRARY_PATH}" ${MAIN_CLASS} "$@"; then |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
exit |
||||
fi |
||||
if java ${CUSTOM_PARAMS} -cp .:../lib/bin/ -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Djava.library.path="${LIBRARY_PATH}" ${MAIN_CLASS} "$@"; then |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
exit |
||||
fi |
||||
java ${CUSTOM_PARAMS} -cp .:../lib/bin/ -XX:+PrintCommandLineFlags -Djava.library.path="${LIBRARY_PATH}" ${MAIN_CLASS} "$@" |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
@ -0,0 +1,17 @@ |
||||
#Builds and runs the project for Windows. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH_WINDOWS} -d ${OUT_DIR} ${PROJECT_DIR}/*.java |
||||
printf "\n\n\nRunning Program...\n\n" |
||||
ORIGINAL_LOC=$(pwd) |
||||
cd $OUT_DIR |
||||
if java ${CUSTOM_PARAMS} -cp ".;../lib/bin/" -XX:+UseZGC "-Djava.library.path=${LIBRARY_PATH}" ${MAIN_CLASS} "$@"; then |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
exit |
||||
fi |
||||
if java ${CUSTOM_PARAMS} -cp ".;../lib/bin/" -XX:+UnlockExperimentalVMOptions -XX:+UseZGC "-Djava.library.path=${LIBRARY_PATH}" ${MAIN_CLASS} "$@"; then |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
exit |
||||
fi |
||||
java ${CUSTOM_PARAMS} -cp ".;../lib/bin/" -XX:+PrintCommandLineFlags "-Djava.library.path=${LIBRARY_PATH}" ${MAIN_CLASS} "$@" |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
@ -0,0 +1,4 @@ |
||||
#Cleans up and removes unused files. |
||||
#Java |
||||
find -type f -name *.class -delete |
||||
find -type f -name manifest -delete |
@ -0,0 +1,20 @@ |
||||
#Adds a commit message and pushes project to github repository. |
||||
#Java |
||||
COMMIT_MESSAGE="$*" |
||||
FIRST_LINE=true |
||||
while IFS= read -r line |
||||
do |
||||
if [ "$FIRST_LINE" = true ]; then |
||||
COMMIT_MESSAGE+=" |
||||
|
||||
Co-authored-by: $line" |
||||
FIRST_LINE=false |
||||
else |
||||
COMMIT_MESSAGE+=" |
||||
Co-authored-by: $line" |
||||
fi |
||||
done < utils/.coauthors |
||||
git add -u |
||||
git add * |
||||
git commit -m "$COMMIT_MESSAGE" |
||||
git push |
@ -0,0 +1,10 @@ |
||||
build2.sh |
||||
build.sh |
||||
clean.sh |
||||
commit.sh |
||||
jar2.sh |
||||
jar.sh |
||||
release.sh |
||||
update.sh |
||||
version_info |
||||
zip.sh |
@ -0,0 +1,17 @@ |
||||
#Builds a runnable jar file using ${MAIN_CLASS} as an entry point and then runs the newly generated jar. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
rm -Rf bin/* |
||||
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH} -d ${OUT_DIR} ${PROJECT_DIR}/${PROJECT_NAME}.java |
||||
printf "\n\n\nGenerating Manifest...\n\n" |
||||
touch manifest |
||||
echo "Main-Class: ${MAIN_CLASS}" > manifest |
||||
printf "\n\n\nCreating Jar...\n\n" |
||||
ORIGINAL_LOC=$(pwd) |
||||
cd ${OUT_DIR} |
||||
jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig |
||||
jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ . |
||||
printf "\n\n\nRunning Program...\n\n" |
||||
java ${CUSTOM_PARAMS} -cp .:../lib/bin -Djava.library.path="${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@" |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
cd .. |
@ -0,0 +1,17 @@ |
||||
#Builds a runnable jar file using ${MAIN_CLASS} as an entry point and then runs the newly generated jar for Windows. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
rm -Rf bin/* |
||||
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH_WINDOWS} -d ${OUT_DIR} ${PROJECT_DIR}/${PROJECT_NAME}.java |
||||
printf "\n\n\nGenerating Manifest...\n\n" |
||||
touch manifest |
||||
echo "Main-Class: ${MAIN_CLASS}" > manifest |
||||
printf "\n\n\nCreating Jar...\n\n" |
||||
ORIGINAL_LOC=$(pwd) |
||||
cd ${OUT_DIR} |
||||
jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig |
||||
jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ . |
||||
printf "\n\n\nRunning Program...\n\n" |
||||
java ${CUSTOM_PARAMS} -cp .;../lib/bin "-Djava.library.path=${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@" |
||||
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||
cd .. |
@ -0,0 +1,9 @@ |
||||
build2.sh:b1c6b7c6b2eb19ba54be6824bda8805b - |
||||
build.sh:5df470d49036bf7565493739aeebeaa8 - |
||||
clean.sh:668a2f9b568c55f6a044a509315032f6 - |
||||
commit.sh:5e4448db9ad48e72ec3a1ff4f5763b41 - |
||||
jar2.sh:7977fc138ee5db798d08c34734f0be93 - |
||||
jar.sh:821d5a109324d405f05c35c4bb129375 - |
||||
release.sh:027178aa6da76180401a188d8f03af64 - |
||||
update.sh:3be721658983183efa395984acd96b03 - |
||||
zip.sh:273f5a83b80a8e54022d60514dfeec0a - |
@ -0,0 +1,28 @@ |
||||
#Use ./sig release <windows|mac|linux> to create a custom installer based on OS. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
FILES=$(cat ${LANGUAGE}/scripts/.package.files) |
||||
if [ "$1" = "windows" ];then |
||||
echo "Creating a package for Windows..." |
||||
echo "Not implemented yet." |
||||
elif [ "$1" = "mac" ];then |
||||
echo "Creating a package for Mac..." |
||||
echo "Not implemented yet." |
||||
elif [ "$1" = "linux" ];then |
||||
echo "Creating a package for Linux..." |
||||
cd .. |
||||
mkdir -vp RabiCloneOut/in |
||||
for f in $FILES |
||||
do |
||||
cp -Rv --parents $PROJECT_NAME/$f RabiCloneOut/in |
||||
done |
||||
jpackage --verbose --input RabiCloneOut/in/RabiClone --main-jar bin/RabiClone.jar --main-class sig.RabiClone --type app-image --dest RabiCloneOut |
||||
cp -Rv RabiCloneOut/RabiClone/lib/app/* RabiCloneOut/RabiClone |
||||
jpackage --verbose --app-image RabiCloneOut/RabiClone --name RabiClone |
||||
rm -Rfv RabiCloneOut |
||||
cd RabiClone |
||||
echo "Done!" |
||||
else |
||||
echo "Usage: " |
||||
echo " ./sig release <windows|mac|linux>" |
||||
fi |
@ -0,0 +1,3 @@ |
||||
#Pulls the latest version of the repository. |
||||
#Java |
||||
git pull |
@ -0,0 +1,3 @@ |
||||
export SOURCE_VERSION="8" |
||||
export TARGET_VERSION="8" |
||||
export RELEASE_VERSION="0.0a" |
@ -0,0 +1,14 @@ |
||||
#Create a zip folder containing all dependencies. For quick release. |
||||
#Java |
||||
source ${LANGUAGE}/scripts/version_info |
||||
TARGET_FILE="${PROJECT_NAME}_${RELEASE_VERSION}.zip" |
||||
FILES=$(cat ${LANGUAGE}/scripts/.package.files) |
||||
echo "Creating Package $TARGET_FILE..." |
||||
for f in $FILES |
||||
do |
||||
zip -ur $TARGET_FILE $f |
||||
done |
||||
echo "Complete!" |
||||
echo "" |
||||
echo "" |
||||
echo "" |
@ -0,0 +1,24 @@ |
||||
# PixelEngine |
||||
A small pixel-based game / rendering engine made in Java highly influenced and similar to the olcPixelGameEngine. |
||||
|
||||
Usage: |
||||
|
||||
Main engine file is in `JavaProjectTemplate.java`. If you choose to rename this file you should probably have your IDE refactor it so all references change accordingly. Better to just leave it as-is. |
||||
|
||||
You will also have to update the `sig` script with the new `PROJECT_NAME` value. |
||||
|
||||
# Window |
||||
Window Width, Height, and the title can all be customized. |
||||
|
||||
# Drawing |
||||
You will find all possible drawing features under the `game` Panel object that is initialized for you. Draw commands all start with `Draw`. The example program contains quite a few of the possible draw commands available. |
||||
|
||||
## Sprites |
||||
Sprites can be placed in the `sprites` folder and referenced accordingly. Instantiating a new `Sprite` class or `AnimatedSprite` class with the name will auto-load it in. Animated Sprites need their base width and height defined, the engine will figure out the animation frames for the rest of the image. `DrawAnimatedSprite` functions request what index of the animation to draw, you feed that yourself. Only horizontal animation strips are supported by default. |
||||
|
||||
# Input |
||||
Mouse input is handled from the `Mouse` static instance. Can poll for `Held`,`Pressed`, and `Released` status of the mouse. |
||||
Keyboard input is handled much the same way with the `Key` static instance. Also has `Held`,`Pressed`, and `Released` statuses per key. Keycodes come from the Java Swing `KeyEvent` class (ex.`KeyEvent.VK_UP`). |
||||
|
||||
# Building |
||||
I include some compile scripts, but you are free to use your own. `./sig` lists all possible commands, `./sig build` builds and tries to run the compiled Java classes. `./sig jar` will output a jar. `./sig zip` will piece together the sprites folder, bin folder, and a run script (for Linux) to run a finished java jar, which provides an easy way to "export" the game. |
@ -0,0 +1,225 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>All Classes</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="All Classes"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":2,"i1":2,"i2":2,"i3":4,"i4":2,"i5":2,"i6":2,"i7":4,"i8":2,"i9":2,"i10":4,"i11":2,"i12":2,"i13":2,"i14":4}; |
||||
var tabs = {65535:["t0","All Classes"],2:["t2","Class Summary"],4:["t3","Enum Summary"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="All&nbsp;Classes" class="title">All Classes</h1> |
||||
</div> |
||||
<div class="allClassesContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="typeSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Classes</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Class Summary</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Enum Summary</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Class</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/Color.html" title="class in sig.engine">Color</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/Edge.html" title="class in sig.engine">Edge</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/Key.html" title="class in sig.engine">Key</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i8" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i9" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/Point.html" title="class in sig.engine">Point</a><<a href="sig/engine/Point.html" title="type parameter in Point">T</a>></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i10" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i11" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i12" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i13" class="rowColor"> |
||||
<td class="colFirst"><a href="sig/engine/String.html" title="class in sig.engine">String</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
<tr id="i14" class="altColor"> |
||||
<td class="colFirst"><a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></td> |
||||
<th class="colLast" scope="row"> </th> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,43 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>All Classes</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1 class="bar">All Classes</h1> |
||||
<main role="main" class="indexContainer"> |
||||
<ul> |
||||
<li><a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></li> |
||||
<li><a href="sig/engine/Color.html" title="class in sig.engine">Color</a></li> |
||||
<li><a href="sig/engine/Edge.html" title="class in sig.engine">Edge</a></li> |
||||
<li><a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></li> |
||||
<li><a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></li> |
||||
<li><a href="sig/engine/Key.html" title="class in sig.engine">Key</a></li> |
||||
<li><a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></li> |
||||
<li><a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></li> |
||||
<li><a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></li> |
||||
<li><a href="sig/engine/Point.html" title="class in sig.engine">Point</a></li> |
||||
<li><a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></li> |
||||
<li><a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></li> |
||||
<li><a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></li> |
||||
<li><a href="sig/engine/String.html" title="class in sig.engine">String</a></li> |
||||
<li><a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></li> |
||||
</ul> |
||||
</main> |
||||
</body> |
||||
</html> |
@ -0,0 +1,169 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>All Packages</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="All Packages"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="All&nbsp;Packages" class="title">All Packages</h1> |
||||
</div> |
||||
<div class="allPackagesContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="packagesSummary"> |
||||
<caption><span>Package Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="sig/package-summary.html">sig</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="sig/engine/package-summary.html">sig.engine</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,221 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Constant Field Values</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Constant Field Values"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="Constant Field Values" class="title">Constant Field Values</h1> |
||||
<section> |
||||
<h2 title="Contents">Contents</h2> |
||||
<ul> |
||||
<li><a href="#sig">sig.*</a></li> |
||||
</ul> |
||||
</section> |
||||
</div> |
||||
<div class="constantValuesContainer"><a id="sig"> |
||||
<!-- --> |
||||
</a> |
||||
<section> |
||||
<h2 title="sig">sig.*</h2> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary"> |
||||
<caption><span>sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a id="sig.JavaProjectTemplate.PROGRAM_NAME"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><a href="sig/JavaProjectTemplate.html#PROGRAM_NAME">PROGRAM_NAME</a></code></th> |
||||
<td class="colLast"><code>"Sig\'s Java Project Template"</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<a id="sig.engine"> |
||||
<!-- --> |
||||
</a> |
||||
<section> |
||||
<h2 title="sig.engine">sig.engine.*</h2> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary"> |
||||
<caption><span>sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a id="sig.engine.Panel.UPDATE_LOOP_FRAMERATE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<th class="colSecond" scope="row"><code><a href="sig/engine/Panel.html#UPDATE_LOOP_FRAMERATE">UPDATE_LOOP_FRAMERATE</a></code></th> |
||||
<td class="colLast"><code>244</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a id="sig.engine.Panel.UPDATE_LOOP_NANOTIME"> |
||||
<!-- --> |
||||
</a><code>public static final long</code></td> |
||||
<th class="colSecond" scope="row"><code><a href="sig/engine/Panel.html#UPDATE_LOOP_NANOTIME">UPDATE_LOOP_NANOTIME</a></code></th> |
||||
<td class="colLast"><code>4098360L</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a id="sig.engine.Panel.UPDATE_MULT"> |
||||
<!-- --> |
||||
</a><code>public static final double</code></td> |
||||
<th class="colSecond" scope="row"><code><a href="sig/engine/Panel.html#UPDATE_MULT">UPDATE_MULT</a></code></th> |
||||
<td class="colLast"><code>0.004098360655737705</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,147 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Deprecated List</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Deprecated List"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li class="navBarCell1Rev">Deprecated</li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="Deprecated API" class="title">Deprecated API</h1> |
||||
<h2 title="Contents">Contents</h2> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li class="navBarCell1Rev">Deprecated</li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,2 @@ |
||||
sig |
||||
sig.engine |
@ -0,0 +1,273 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>API Help</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="API Help"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li class="navBarCell1Rev">Help</li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 class="title">How This API Document Is Organized</h1> |
||||
<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Overview</h2> |
||||
<p>The <a href="index.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Package</h2> |
||||
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:</p> |
||||
<ul> |
||||
<li>Interfaces</li> |
||||
<li>Classes</li> |
||||
<li>Enums</li> |
||||
<li>Exceptions</li> |
||||
<li>Errors</li> |
||||
<li>Annotation Types</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Class or Interface</h2> |
||||
<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p> |
||||
<ul> |
||||
<li>Class Inheritance Diagram</li> |
||||
<li>Direct Subclasses</li> |
||||
<li>All Known Subinterfaces</li> |
||||
<li>All Known Implementing Classes</li> |
||||
<li>Class or Interface Declaration</li> |
||||
<li>Class or Interface Description</li> |
||||
</ul> |
||||
<br> |
||||
<ul> |
||||
<li>Nested Class Summary</li> |
||||
<li>Field Summary</li> |
||||
<li>Property Summary</li> |
||||
<li>Constructor Summary</li> |
||||
<li>Method Summary</li> |
||||
</ul> |
||||
<br> |
||||
<ul> |
||||
<li>Field Detail</li> |
||||
<li>Property Detail</li> |
||||
<li>Constructor Detail</li> |
||||
<li>Method Detail</li> |
||||
</ul> |
||||
<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Annotation Type</h2> |
||||
<p>Each annotation type has its own separate page with the following sections:</p> |
||||
<ul> |
||||
<li>Annotation Type Declaration</li> |
||||
<li>Annotation Type Description</li> |
||||
<li>Required Element Summary</li> |
||||
<li>Optional Element Summary</li> |
||||
<li>Element Detail</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Enum</h2> |
||||
<p>Each enum has its own separate page with the following sections:</p> |
||||
<ul> |
||||
<li>Enum Declaration</li> |
||||
<li>Enum Description</li> |
||||
<li>Enum Constant Summary</li> |
||||
<li>Enum Constant Detail</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Tree (Class Hierarchy)</h2> |
||||
<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with <code>java.lang.Object</code>. Interfaces do not inherit from <code>java.lang.Object</code>.</p> |
||||
<ul> |
||||
<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li> |
||||
<li>When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Deprecated API</h2> |
||||
<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Index</h2> |
||||
<p>The <a href="index-all.html">Index</a> contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>All Classes</h2> |
||||
<p>The <a href="allclasses.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Serialized Form</h2> |
||||
<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Constant Field Values</h2> |
||||
<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p> |
||||
</section> |
||||
</li> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2>Search</h2> |
||||
<p>You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".</p> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
<hr> |
||||
<span class="emphasizedPhrase">This help file applies to API documentation generated by the standard doclet.</span></div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li class="navBarCell1Rev">Help</li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,724 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Index</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Index"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li class="navBarCell1Rev">Index</li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a href="#I:X">X</a> <a href="#I:Y">Y</a> <br><a href="allclasses-index.html">All Classes</a> <a href="allpackages-index.html">All Packages</a><a id="I:A"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">A</h2> |
||||
<dl> |
||||
<dt><a href="sig/engine/AnimatedSprite.html" title="class in sig.engine"><span class="typeNameLink">AnimatedSprite</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/AnimatedSprite.html#%3Cinit%3E(java.lang.String,int,int)">AnimatedSprite(String, int, int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#append(char)">append(char)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#append(double)">append(double)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#append(java.lang.Object...)">append(Object...)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:B"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">B</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BLACK">BLACK</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BLUE">BLUE</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_BLACK">BRIGHT_BLACK</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_BLUE">BRIGHT_BLUE</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_CYAN">BRIGHT_CYAN</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_GREEN">BRIGHT_GREEN</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_MAGENTA">BRIGHT_MAGENTA</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_RED">BRIGHT_RED</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_WHITE">BRIGHT_WHITE</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#BRIGHT_YELLOW">BRIGHT_YELLOW</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#button">button</a></span> - Variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:C"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">C</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#clear()">clear()</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Clear(sig.engine.Color)">Clear(Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#clickMap">clickMap</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#clone()">clone()</a></span> - Method in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#clone()">clone()</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Color.html" title="class in sig.engine"><span class="typeNameLink">Color</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#%3Cinit%3E(float,float,float)">Color(float, float, float)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#%3Cinit%3E(float,float,float,float)">Color(float, float, float, float)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#%3Cinit%3E(int)">Color(int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#%3Cinit%3E(int,int,int)">Color(int, int, int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#%3Cinit%3E(int,int,int,int)">Color(int, int, int, int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#CYAN">CYAN</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:D"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">D</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/MouseScrollValue.html#DOWN">DOWN</a></span> - sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw(int,int,sig.engine.Color)">Draw(int, int, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Animated_Sprite(double,double,sig.engine.AnimatedSprite,double)">Draw_Animated_Sprite(double, double, AnimatedSprite, double)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Animated_Sprite(double,double,sig.engine.AnimatedSprite,double,sig.engine.Color,sig.engine.Transform)">Draw_Animated_Sprite(double, double, AnimatedSprite, double, Color, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Animated_Sprite_Partial_Ext(double,double,double,double,double,double,sig.engine.AnimatedSprite,double,sig.engine.Color,sig.engine.Transform)">Draw_Animated_Sprite_Partial_Ext(double, double, double, double, double, double, AnimatedSprite, double, Color, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Circle(int,int,int,sig.engine.Color)">Draw_Circle(int, int, int, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Circle(int,int,int,sig.engine.Color,byte)">Draw_Circle(int, int, int, Color, byte)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Line(int,int,int,int,sig.engine.Color)">Draw_Line(int, int, int, int, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Rect(double,double,double,double,sig.engine.Color)">Draw_Rect(double, double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite(double,double,sig.engine.Sprite)">Draw_Sprite(double, double, Sprite)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite(double,double,sig.engine.Sprite,sig.engine.Color)">Draw_Sprite(double, double, Sprite, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite(double,double,sig.engine.Sprite,sig.engine.Transform)">Draw_Sprite(double, double, Sprite, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite_Partial(double,double,double,double,double,double,sig.engine.Sprite,double,sig.engine.Color,sig.engine.Transform)">Draw_Sprite_Partial(double, double, double, double, double, double, Sprite, double, Color, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite_Partial_Ext(double,double,double,double,double,double,sig.engine.Sprite,double,sig.engine.Color,sig.engine.Transform)">Draw_Sprite_Partial_Ext(double, double, double, double, double, double, Sprite, double, Color, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Sprite_Partial_Ext(double,double,double,double,double,double,sig.engine.Sprite,sig.engine.Color,sig.engine.Transform)">Draw_Sprite_Partial_Ext(double, double, double, double, double, double, Sprite, Color, Transform)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Text(double,double,java.lang.String,sig.engine.Font)">Draw_Text(double, double, String, Font)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Text_Ext(double,double,java.lang.String,sig.engine.Font,sig.engine.Color)">Draw_Text_Ext(double, double, String, Font, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Draw_Triangle(double,double,double,double,double,double,sig.engine.Color)">Draw_Triangle(double, double, double, double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#drawGame()">drawGame()</a></span> - Method in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:E"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">E</h2> |
||||
<dl> |
||||
<dt><a href="sig/engine/Edge.html" title="class in sig.engine"><span class="typeNameLink">Edge</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Edge.html#%3Cinit%3E(sig.engine.Point,sig.engine.Point)">Edge(Point<Integer>, Point<Integer>)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Edge.html" title="class in sig.engine">Edge</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:F"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">F</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#f">f</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/PolygonStructure.html#FAN">FAN</a></span> - sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Fill_Circle(int,int,int,sig.engine.Color)">Fill_Circle(int, int, int, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Fill_Rect(double,double,double,double,sig.engine.Color)">Fill_Rect(double, double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#Fill_Triangle(double,double,double,double,double,double,sig.engine.Color)">Fill_Triangle(double, double, double, double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#FillCircle(double,double,double,sig.engine.Color)">FillCircle(double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#FillOval(double,double,double,double,sig.engine.Color)">FillOval(double, double, double, double, Color)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#FillPolygon(double,double,sig.engine.Color,java.util.List)">FillPolygon(double, double, Color, List<Point<Integer>>)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#FillTexturedPolygon(java.util.List,java.util.List,java.util.List,sig.engine.Sprite,sig.engine.PolygonStructure)">FillTexturedPolygon(List<Point<Double>>, List<Point<Double>>, List<Color>, Sprite, PolygonStructure)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#FillTexturedTriangle(java.util.List,java.util.List,java.util.List,sig.engine.Sprite)">FillTexturedTriangle(List<Point<Double>>, List<Point<Double>>, List<Color>, Sprite)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Font.html" title="enum in sig.engine"><span class="typeNameLink">Font</span></a> - Enum in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:G"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">G</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#game">game</a></span> - Static variable in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#getBounds(sig.engine.Font)">getBounds(Font)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#getBuilder()">getBuilder()</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/AnimatedSprite.html#getCanvasHeight()">getCanvasHeight()</a></span> - Method in class sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#getCanvasHeight()">getCanvasHeight()</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/AnimatedSprite.html#getCanvasWidth()">getCanvasWidth()</a></span> - Method in class sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#getCanvasWidth()">getCanvasWidth()</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#getCharacterBounds(char)">getCharacterBounds(char)</a></span> - Method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#getCharInfo(char)">getCharInfo(char)</a></span> - Method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#getColor()">getColor()</a></span> - Method in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#getCompatibleColorModel()">getCompatibleColorModel()</a></span> - Static method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> |
||||
<div class="block">Get Best Color model available for current screen.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/AnimatedSprite.html#getFrame(int)">getFrame(int)</a></span> - Method in class sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/AnimatedSprite.html#getFrame_count()">getFrame_count()</a></span> - Method in class sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#getGlyphHeight()">getGlyphHeight()</a></span> - Method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#getGlyphWidth()">getGlyphWidth()</a></span> - Method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getHeight()">getHeight()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#getHeight()">getHeight()</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#getImg()">getImg()</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#getKeyCode()">getKeyCode()</a></span> - Method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#GetPos()">GetPos()</a></span> - Static method in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#getSprite()">getSprite()</a></span> - Method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/MouseScrollValue.html#getValue(int)">getValue(int)</a></span> - Static method in enum sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getWidth()">getWidth()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#getWidth()">getWidth()</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#getX()">getX()</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getX()">getX()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getX2()">getX2()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#getY()">getY()</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getY()">getY()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#getY2()">getY2()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#GREEN">GREEN</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:H"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">H</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#HORIZ_VERTIC">HORIZ_VERTIC</a></span> - sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#HORIZONTAL">HORIZONTAL</a></span> - sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:I"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">I</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#imageUpdate(java.awt.Image,int,int,int,int,int)">imageUpdate(Image, int, int, int, int, int)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> |
||||
<div class="block">Overrides ImageObserver.imageUpdate.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#indexOf(java.lang.String)">indexOf(String)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#indexOf(java.lang.String,int)">indexOf(String, int)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring, starting at the specified index.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#init()">init()</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> |
||||
<div class="block">Call it after been visible and after resizes.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#InitializeEngine(sig.JavaProjectTemplate)">InitializeEngine(JavaProjectTemplate)</a></span> - Static method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#isHeld(int)">isHeld(int)</a></span> - Static method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#isHeld(java.lang.Integer)">isHeld(Integer)</a></span> - Static method in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#isKeyHeld()">isKeyHeld()</a></span> - Method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#isPressed(int)">isPressed(int)</a></span> - Static method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#isPressed(java.lang.Integer)">isPressed(Integer)</a></span> - Static method in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#isReleased(int)">isReleased(int)</a></span> - Static method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#isReleased(java.lang.Integer)">isReleased(Integer)</a></span> - Static method in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:J"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">J</h2> |
||||
<dl> |
||||
<dt><a href="sig/JavaProjectTemplate.html" title="class in sig"><span class="typeNameLink">JavaProjectTemplate</span></a> - Class in <a href="sig/package-summary.html">sig</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:K"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">K</h2> |
||||
<dl> |
||||
<dt><a href="sig/engine/Key.html" title="class in sig.engine"><span class="typeNameLink">Key</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#%3Cinit%3E(int)">Key(int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#keyPressed(java.awt.event.KeyEvent)">keyPressed(KeyEvent)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#keyReleased(java.awt.event.KeyEvent)">keyReleased(KeyEvent)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#keyTyped(java.awt.event.KeyEvent)">keyTyped(KeyEvent)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:L"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">L</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#length()">length()</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/PolygonStructure.html#LIST">LIST</a></span> - sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:M"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">M</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#MAGENTA">MAGENTA</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#main(java.lang.String%5B%5D)">main(String[])</a></span> - Static method in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Mouse.html" title="class in sig.engine"><span class="typeNameLink">Mouse</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#%3Cinit%3E()">Mouse()</a></span> - Constructor for class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#mousePosition">mousePosition</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine"><span class="typeNameLink">MouseScrollValue</span></a> - Enum in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:N"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">N</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#nanaX">nanaX</a></span> - Variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#nanaY">nanaY</a></span> - Variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#NONE">NONE</a></span> - sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:P"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">P</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#p">p</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#paintComponent(java.awt.Graphics)">paintComponent(Graphics)</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Panel.html" title="class in sig.engine"><span class="typeNameLink">Panel</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#%3Cinit%3E(javax.swing.JFrame)">Panel(JFrame)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#pixel">pixel</a></span> - Variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Point.html" title="class in sig.engine"><span class="typeNameLink">Point</span></a><<a href="sig/engine/Point.html" title="type parameter in Point">T</a>> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#%3Cinit%3E(T,T)">Point(T, T)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/PolygonStructure.html" title="enum in sig.engine"><span class="typeNameLink">PolygonStructure</span></a> - Enum in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#pressMap">pressMap</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#PROFONT">PROFONT</a></span> - Static variable in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#PROFONT_12">PROFONT_12</a></span> - sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#PROFONT_36">PROFONT_36</a></span> - sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#PROFONT_36">PROFONT_36</a></span> - Static variable in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#PROGRAM_NAME">PROGRAM_NAME</a></span> - Static variable in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:R"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">R</h2> |
||||
<dl> |
||||
<dt><a href="sig/engine/Rectangle.html" title="class in sig.engine"><span class="typeNameLink">Rectangle</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#%3Cinit%3E(int,int,int,int)">Rectangle(int, int, int, int)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#RED">RED</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#releaseMap">releaseMap</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#render()">render()</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> |
||||
<div class="block">Do your draws in here !! |
||||
pixel is your canvas!</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#RENDERHINTS">RENDERHINTS</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#replace(int,int,java.lang.String)">replace(int, int, String)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> |
||||
<div class="block">Replaces the characters in a substring of this sequence |
||||
with characters in the specified <code>String</code>.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#run()">run()</a></span> - Method in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:S"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">S</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#scaleTime">scaleTime</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#set(T,T)">set(T, T)</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#setHeight(int)">setHeight(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#setHeight(int)">setHeight(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#setImg(java.awt.image.BufferedImage)">setImg(BufferedImage)</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Key.html#setKeyHeld(int,boolean)">setKeyHeld(int, boolean)</a></span> - Static method in class sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine">Key</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#setWidth(int)">setWidth(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#setWidth(int)">setWidth(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#setX(int)">setX(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#setX(T)">setX(T)</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#setY(int)">setY(int)</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#setY(T)">setY(T)</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/package-summary.html">sig</a> - package sig</dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/package-summary.html">sig.engine</a> - package sig.engine</dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Sprite.html" title="class in sig.engine"><span class="typeNameLink">Sprite</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#%3Cinit%3E(java.lang.String)">Sprite(String)</a></span> - Constructor for class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Sprite.html#SPRITES_FOLDER">SPRITES_FOLDER</a></span> - Static variable in class sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine">Sprite</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/String.html" title="class in sig.engine"><span class="typeNameLink">String</span></a> - Class in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#%3Cinit%3E()">String()</a></span> - Constructor for class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#%3Cinit%3E(double)">String(double)</a></span> - Constructor for class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#%3Cinit%3E(java.lang.Object)">String(Object)</a></span> - Constructor for class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#%3Cinit%3E(java.lang.String)">String(String)</a></span> - Constructor for class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/PolygonStructure.html#STRIP">STRIP</a></span> - sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#substring(int)">substring(int)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this character sequence.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#substring(int,int)">substring(int, int)</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this sequence.</div> |
||||
</dd> |
||||
</dl> |
||||
<a id="I:T"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">T</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#TIME">TIME</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#toString()">toString()</a></span> - Method in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Edge.html#toString()">toString()</a></span> - Method in class sig.engine.<a href="sig/engine/Edge.html" title="class in sig.engine">Edge</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#toString()">toString()</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Rectangle.html#toString()">toString()</a></span> - Method in class sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine">Rectangle</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/String.html#toString()">toString()</a></span> - Method in class sig.engine.<a href="sig/engine/String.html" title="class in sig.engine">String</a></dt> |
||||
<dd> </dd> |
||||
<dt><a href="sig/engine/Transform.html" title="enum in sig.engine"><span class="typeNameLink">Transform</span></a> - Enum in <a href="sig/engine/package-summary.html">sig.engine</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:U"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">U</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/MouseScrollValue.html#UP">UP</a></span> - sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#update(T,T)">update(T, T)</a></span> - Method in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#UPDATE_LOOP_FRAMERATE">UPDATE_LOOP_FRAMERATE</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#UPDATE_LOOP_NANOTIME">UPDATE_LOOP_NANOTIME</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Panel.html#UPDATE_MULT">UPDATE_MULT</a></span> - Static variable in class sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine">Panel</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#updateGame(double)">updateGame(double)</a></span> - Method in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:V"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">V</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/MouseScrollValue.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/PolygonStructure.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Font.html#values()">values()</a></span> - Static method in enum sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine">Font</a></dt> |
||||
<dd> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/MouseScrollValue.html#values()">values()</a></span> - Static method in enum sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></dt> |
||||
<dd> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/PolygonStructure.html#values()">values()</a></span> - Static method in enum sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></dt> |
||||
<dd> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#values()">values()</a></span> - Static method in enum sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Transform.html#VERTICAL">VERTICAL</a></span> - sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine">Transform</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:W"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">W</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#WHITE">WHITE</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#WINDOW_HEIGHT">WINDOW_HEIGHT</a></span> - Static variable in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/JavaProjectTemplate.html#WINDOW_WIDTH">WINDOW_WIDTH</a></span> - Static variable in class sig.<a href="sig/JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:X"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">X</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#x">x</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#x">x</a></span> - Variable in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a id="I:Y"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 class="title">Y</h2> |
||||
<dl> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Mouse.html#y">y</a></span> - Static variable in class sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine">Mouse</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Point.html#y">y</a></span> - Variable in class sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine">Point</a></dt> |
||||
<dd> </dd> |
||||
<dt><span class="memberNameLink"><a href="sig/engine/Color.html#YELLOW">YELLOW</a></span> - Static variable in class sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine">Color</a></dt> |
||||
<dd> </dd> |
||||
</dl> |
||||
<a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a href="#I:X">X</a> <a href="#I:Y">Y</a> <br><a href="allclasses-index.html">All Classes</a> <a href="allpackages-index.html">All Packages</a></div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li class="navBarCell1Rev">Index</li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,162 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Overview</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Overview"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li class="navBarCell1Rev">Overview</li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="contentContainer"> |
||||
<table class="overviewSummary"> |
||||
<caption><span>Packages</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor" id="i0"> |
||||
<th class="colFirst" scope="row"><a href="sig/package-summary.html">sig</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor" id="i1"> |
||||
<th class="colFirst" scope="row"><a href="sig/engine/package-summary.html">sig.engine</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li class="navBarCell1Rev">Overview</li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,35 @@ |
||||
/* |
||||
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
||||
* |
||||
* This code is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License version 2 only, as |
||||
* published by the Free Software Foundation. Oracle designates this |
||||
* particular file as subject to the "Classpath" exception as provided |
||||
* by Oracle in the LICENSE file that accompanied this code. |
||||
* |
||||
* This code is distributed in the hope that it will be useful, but WITHOUT |
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
||||
* version 2 for more details (a copy is included in the LICENSE file that |
||||
* accompanied this code). |
||||
* |
||||
* You should have received a copy of the GNU General Public License version |
||||
* 2 along with this work; if not, write to the Free Software Foundation, |
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
||||
* |
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
||||
* or visit www.oracle.com if you need additional information or have any |
||||
* questions. |
||||
*/ |
||||
|
||||
.ui-state-active, |
||||
.ui-widget-content .ui-state-active, |
||||
.ui-widget-header .ui-state-active, |
||||
a.ui-button:active, |
||||
.ui-button:active, |
||||
.ui-button.ui-state-active:hover { |
||||
/* Overrides the color of selection used in jQuery UI */ |
||||
background: #F8981D; |
||||
border: 1px solid #F8981D; |
||||
} |
@ -0,0 +1,6 @@ |
||||
/*! jQuery UI - v1.13.1 - 2022-05-12 |
||||
* http://jqueryui.com |
||||
* Includes: core.css, autocomplete.css, menu.css |
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */ |
||||
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} |
@ -0,0 +1,56 @@ |
||||
/*! |
||||
|
||||
JSZipUtils - A collection of cross-browser utilities to go along with JSZip. |
||||
<http://stuk.github.io/jszip-utils>
|
||||
|
||||
(c) 2014 Stuart Knightley, David Duponchel |
||||
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
|
||||
|
||||
*/ |
||||
;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ |
||||
var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/* jshint evil: true, newcap: false */ |
||||
/* global IEBinaryToArray_ByteStr, IEBinaryToArray_ByteStr_Last */ |
||||
"use strict"; |
||||
|
||||
// Adapted from http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
|
||||
var IEBinaryToArray_ByteStr_Script = |
||||
"<!-- IEBinaryToArray_ByteStr -->\r\n"+ |
||||
"<script type='text/vbscript'>\r\n"+ |
||||
"Function IEBinaryToArray_ByteStr(Binary)\r\n"+ |
||||
" IEBinaryToArray_ByteStr = CStr(Binary)\r\n"+ |
||||
"End Function\r\n"+ |
||||
"Function IEBinaryToArray_ByteStr_Last(Binary)\r\n"+ |
||||
" Dim lastIndex\r\n"+ |
||||
" lastIndex = LenB(Binary)\r\n"+ |
||||
" if lastIndex mod 2 Then\r\n"+ |
||||
" IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n"+ |
||||
" Else\r\n"+ |
||||
" IEBinaryToArray_ByteStr_Last = "+'""'+"\r\n"+ |
||||
" End If\r\n"+ |
||||
"End Function\r\n"+ |
||||
"</script>\r\n"; |
||||
|
||||
// inject VBScript
|
||||
document.write(IEBinaryToArray_ByteStr_Script); |
||||
|
||||
global.JSZipUtils._getBinaryFromXHR = function (xhr) { |
||||
var binary = xhr.responseBody; |
||||
var byteMapping = {}; |
||||
for ( var i = 0; i < 256; i++ ) { |
||||
for ( var j = 0; j < 256; j++ ) { |
||||
byteMapping[ String.fromCharCode( i + (j << 8) ) ] = |
||||
String.fromCharCode(i) + String.fromCharCode(j); |
||||
} |
||||
} |
||||
var rawBytes = IEBinaryToArray_ByteStr(binary); |
||||
var lastChr = IEBinaryToArray_ByteStr_Last(binary); |
||||
return rawBytes.replace(/[\s\S]/g, function( match ) { |
||||
return byteMapping[match]; |
||||
}) + lastChr; |
||||
}; |
||||
|
||||
// enforcing Stuk's coding style
|
||||
// vim: set shiftwidth=4 softtabstop=4:
|
||||
|
||||
},{}]},{},[1]) |
||||
; |
@ -0,0 +1,10 @@ |
||||
/*! |
||||
|
||||
JSZipUtils - A collection of cross-browser utilities to go along with JSZip. |
||||
<http://stuk.github.io/jszip-utils>
|
||||
|
||||
(c) 2014 Stuart Knightley, David Duponchel |
||||
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
|
||||
|
||||
*/ |
||||
!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(){var a="undefined"!=typeof self?self:"undefined"!=typeof window?window:{},b="<!-- IEBinaryToArray_ByteStr -->\r\n<script type='text/vbscript'>\r\nFunction IEBinaryToArray_ByteStr(Binary)\r\n IEBinaryToArray_ByteStr = CStr(Binary)\r\nEnd Function\r\nFunction IEBinaryToArray_ByteStr_Last(Binary)\r\n Dim lastIndex\r\n lastIndex = LenB(Binary)\r\n if lastIndex mod 2 Then\r\n IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n Else\r\n IEBinaryToArray_ByteStr_Last = \"\"\r\n End If\r\nEnd Function\r\n</script>\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); |
@ -0,0 +1,118 @@ |
||||
/*! |
||||
|
||||
JSZipUtils - A collection of cross-browser utilities to go along with JSZip. |
||||
<http://stuk.github.io/jszip-utils>
|
||||
|
||||
(c) 2014 Stuart Knightley, David Duponchel |
||||
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
|
||||
|
||||
*/ |
||||
!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ |
||||
'use strict'; |
||||
|
||||
var JSZipUtils = {}; |
||||
// just use the responseText with xhr1, response with xhr2.
|
||||
// The transformation doesn't throw away high-order byte (with responseText)
|
||||
// because JSZip handles that case. If not used with JSZip, you may need to
|
||||
// do it, see https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data
|
||||
JSZipUtils._getBinaryFromXHR = function (xhr) { |
||||
// for xhr.responseText, the 0xFF mask is applied by JSZip
|
||||
return xhr.response || xhr.responseText; |
||||
}; |
||||
|
||||
// taken from jQuery
|
||||
function createStandardXHR() { |
||||
try { |
||||
return new window.XMLHttpRequest(); |
||||
} catch( e ) {} |
||||
} |
||||
|
||||
function createActiveXHR() { |
||||
try { |
||||
return new window.ActiveXObject("Microsoft.XMLHTTP"); |
||||
} catch( e ) {} |
||||
} |
||||
|
||||
// Create the request object
|
||||
var createXHR = window.ActiveXObject ? |
||||
/* Microsoft failed to properly |
||||
* implement the XMLHttpRequest in IE7 (can't request local files), |
||||
* so we use the ActiveXObject when it is available |
||||
* Additionally XMLHttpRequest can be disabled in IE7/IE8 so |
||||
* we need a fallback. |
||||
*/ |
||||
function() { |
||||
return createStandardXHR() || createActiveXHR(); |
||||
} : |
||||
// For all other browsers, use the standard XMLHttpRequest object
|
||||
createStandardXHR; |
||||
|
||||
|
||||
|
||||
JSZipUtils.getBinaryContent = function(path, callback) { |
||||
/* |
||||
* Here is the tricky part : getting the data. |
||||
* In firefox/chrome/opera/... setting the mimeType to 'text/plain; charset=x-user-defined' |
||||
* is enough, the result is in the standard xhr.responseText. |
||||
* cf https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest#Receiving_binary_data_in_older_browsers
|
||||
* In IE <= 9, we must use (the IE only) attribute responseBody |
||||
* (for binary data, its content is different from responseText). |
||||
* In IE 10, the 'charset=x-user-defined' trick doesn't work, only the |
||||
* responseType will work : |
||||
* http://msdn.microsoft.com/en-us/library/ie/hh673569%28v=vs.85%29.aspx#Binary_Object_upload_and_download
|
||||
* |
||||
* I'd like to use jQuery to avoid this XHR madness, but it doesn't support |
||||
* the responseType attribute : http://bugs.jquery.com/ticket/11461
|
||||
*/ |
||||
try { |
||||
|
||||
var xhr = createXHR(); |
||||
|
||||
xhr.open('GET', path, true); |
||||
|
||||
// recent browsers
|
||||
if ("responseType" in xhr) { |
||||
xhr.responseType = "arraybuffer"; |
||||
} |
||||
|
||||
// older browser
|
||||
if(xhr.overrideMimeType) { |
||||
xhr.overrideMimeType("text/plain; charset=x-user-defined"); |
||||
} |
||||
|
||||
xhr.onreadystatechange = function(evt) { |
||||
var file, err; |
||||
// use `xhr` and not `this`... thanks IE
|
||||
if (xhr.readyState === 4) { |
||||
if (xhr.status === 200 || xhr.status === 0) { |
||||
file = null; |
||||
err = null; |
||||
try { |
||||
file = JSZipUtils._getBinaryFromXHR(xhr); |
||||
} catch(e) { |
||||
err = new Error(e); |
||||
} |
||||
callback(err, file); |
||||
} else { |
||||
callback(new Error("Ajax error for " + path + " : " + this.status + " " + this.statusText), null); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
xhr.send(); |
||||
|
||||
} catch (e) { |
||||
callback(new Error(e), null); |
||||
} |
||||
}; |
||||
|
||||
// export
|
||||
module.exports = JSZipUtils; |
||||
|
||||
// enforcing Stuk's coding style
|
||||
// vim: set shiftwidth=4 softtabstop=4:
|
||||
|
||||
},{}]},{},[1]) |
||||
(1) |
||||
}); |
||||
; |
@ -0,0 +1,10 @@ |
||||
/*! |
||||
|
||||
JSZipUtils - A collection of cross-browser utilities to go along with JSZip. |
||||
<http://stuk.github.io/jszip-utils>
|
||||
|
||||
(c) 2014 Stuart Knightley, David Duponchel |
||||
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
|
||||
|
||||
*/ |
||||
!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b){"use strict";function c(){try{return new window.XMLHttpRequest}catch(a){}}function d(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}}var e={};e._getBinaryFromXHR=function(a){return a.response||a.responseText};var f=window.ActiveXObject?function(){return c()||d()}:c;e.getBinaryContent=function(a,b){try{var c=f();c.open("GET",a,!0),"responseType"in c&&(c.responseType="arraybuffer"),c.overrideMimeType&&c.overrideMimeType("text/plain; charset=x-user-defined"),c.onreadystatechange=function(){var d,f;if(4===c.readyState)if(200===c.status||0===c.status){d=null,f=null;try{d=e._getBinaryFromXHR(c)}catch(g){f=new Error(g)}b(f,d)}else b(new Error("Ajax error for "+a+" : "+this.status+" "+this.statusText),null)},c.send()}catch(d){b(new Error(d),null)}},b.exports=e},{}]},{},[1])(1)}); |
@ -0,0 +1,23 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Generated Documentation (Untitled)</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<script type="text/javascript">window.location.replace('index.html')</script> |
||||
<noscript> |
||||
<meta http-equiv="Refresh" content="0;index.html"> |
||||
</noscript> |
||||
<link rel="canonical" href="index.html"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
</head> |
||||
<body> |
||||
<main role="main"> |
||||
<noscript> |
||||
<p>JavaScript is disabled on your browser.</p> |
||||
</noscript> |
||||
<p><a href="index.html">index.html</a></p> |
||||
</main> |
||||
</body> |
||||
</html> |
@ -0,0 +1,209 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Class Hierarchy</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Class Hierarchy"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For All Packages</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="sig/package-tree.html">sig</a>, </li> |
||||
<li><a href="sig/engine/package-tree.html">sig.engine</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<section> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li class="circle">java.lang.Object |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Color.html" title="class in sig.engine"><span class="typeNameLink">Color</span></a></li> |
||||
<li class="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">java.awt.Container |
||||
<ul> |
||||
<li class="circle">javax.swing.JComponent (implements java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">javax.swing.JPanel (implements javax.accessibility.Accessible) |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Panel.html" title="class in sig.engine"><span class="typeNameLink">Panel</span></a> (implements java.awt.event.KeyListener, java.lang.Runnable)</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Edge.html" title="class in sig.engine"><span class="typeNameLink">Edge</span></a></li> |
||||
<li class="circle">sig.<a href="sig/JavaProjectTemplate.html" title="class in sig"><span class="typeNameLink">JavaProjectTemplate</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Key.html" title="class in sig.engine"><span class="typeNameLink">Key</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Mouse.html" title="class in sig.engine"><span class="typeNameLink">Mouse</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Point.html" title="class in sig.engine"><span class="typeNameLink">Point</span></a><T></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Rectangle.html" title="class in sig.engine"><span class="typeNameLink">Rectangle</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Sprite.html" title="class in sig.engine"><span class="typeNameLink">Sprite</span></a> |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="sig/engine/AnimatedSprite.html" title="class in sig.engine"><span class="typeNameLink">AnimatedSprite</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/String.html" title="class in sig.engine"><span class="typeNameLink">String</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<section> |
||||
<h2 title="Enum Hierarchy">Enum Hierarchy</h2> |
||||
<ul> |
||||
<li class="circle">java.lang.Object |
||||
<ul> |
||||
<li class="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Font.html" title="enum in sig.engine"><span class="typeNameLink">Font</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine"><span class="typeNameLink">MouseScrollValue</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/PolygonStructure.html" title="enum in sig.engine"><span class="typeNameLink">PolygonStructure</span></a></li> |
||||
<li class="circle">sig.engine.<a href="sig/engine/Transform.html" title="enum in sig.engine"><span class="typeNameLink">Transform</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1 @@ |
||||
packageSearchIndex = [{"l":"All Packages","url":"allpackages-index.html"},{"l":"sig"},{"l":"sig.engine"}] |
After Width: | Height: | Size: 499 B |
After Width: | Height: | Size: 394 B |
@ -0,0 +1,149 @@ |
||||
/* |
||||
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
||||
* |
||||
* This code is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License version 2 only, as |
||||
* published by the Free Software Foundation. Oracle designates this |
||||
* particular file as subject to the "Classpath" exception as provided |
||||
* by Oracle in the LICENSE file that accompanied this code. |
||||
* |
||||
* This code is distributed in the hope that it will be useful, but WITHOUT |
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
||||
* version 2 for more details (a copy is included in the LICENSE file that |
||||
* accompanied this code). |
||||
* |
||||
* You should have received a copy of the GNU General Public License version |
||||
* 2 along with this work; if not, write to the Free Software Foundation, |
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
||||
* |
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
||||
* or visit www.oracle.com if you need additional information or have any |
||||
* questions. |
||||
*/ |
||||
|
||||
var moduleSearchIndex; |
||||
var packageSearchIndex; |
||||
var typeSearchIndex; |
||||
var memberSearchIndex; |
||||
var tagSearchIndex; |
||||
function loadScripts(doc, tag) { |
||||
createElem(doc, tag, 'jquery/jszip/dist/jszip.js'); |
||||
createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils.js'); |
||||
if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0 || |
||||
window.navigator.userAgent.indexOf('Edge/') > 0) { |
||||
createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js'); |
||||
} |
||||
createElem(doc, tag, 'search.js'); |
||||
|
||||
$.get(pathtoroot + "module-search-index.zip") |
||||
.done(function() { |
||||
JSZipUtils.getBinaryContent(pathtoroot + "module-search-index.zip", function(e, data) { |
||||
JSZip.loadAsync(data).then(function(zip){ |
||||
zip.file("module-search-index.json").async("text").then(function(content){ |
||||
moduleSearchIndex = JSON.parse(content); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
$.get(pathtoroot + "package-search-index.zip") |
||||
.done(function() { |
||||
JSZipUtils.getBinaryContent(pathtoroot + "package-search-index.zip", function(e, data) { |
||||
JSZip.loadAsync(data).then(function(zip){ |
||||
zip.file("package-search-index.json").async("text").then(function(content){ |
||||
packageSearchIndex = JSON.parse(content); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
$.get(pathtoroot + "type-search-index.zip") |
||||
.done(function() { |
||||
JSZipUtils.getBinaryContent(pathtoroot + "type-search-index.zip", function(e, data) { |
||||
JSZip.loadAsync(data).then(function(zip){ |
||||
zip.file("type-search-index.json").async("text").then(function(content){ |
||||
typeSearchIndex = JSON.parse(content); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
$.get(pathtoroot + "member-search-index.zip") |
||||
.done(function() { |
||||
JSZipUtils.getBinaryContent(pathtoroot + "member-search-index.zip", function(e, data) { |
||||
JSZip.loadAsync(data).then(function(zip){ |
||||
zip.file("member-search-index.json").async("text").then(function(content){ |
||||
memberSearchIndex = JSON.parse(content); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
$.get(pathtoroot + "tag-search-index.zip") |
||||
.done(function() { |
||||
JSZipUtils.getBinaryContent(pathtoroot + "tag-search-index.zip", function(e, data) { |
||||
JSZip.loadAsync(data).then(function(zip){ |
||||
zip.file("tag-search-index.json").async("text").then(function(content){ |
||||
tagSearchIndex = JSON.parse(content); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
if (!moduleSearchIndex) { |
||||
createElem(doc, tag, 'module-search-index.js'); |
||||
} |
||||
if (!packageSearchIndex) { |
||||
createElem(doc, tag, 'package-search-index.js'); |
||||
} |
||||
if (!typeSearchIndex) { |
||||
createElem(doc, tag, 'type-search-index.js'); |
||||
} |
||||
if (!memberSearchIndex) { |
||||
createElem(doc, tag, 'member-search-index.js'); |
||||
} |
||||
if (!tagSearchIndex) { |
||||
createElem(doc, tag, 'tag-search-index.js'); |
||||
} |
||||
$(window).resize(function() { |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
}); |
||||
} |
||||
|
||||
function createElem(doc, tag, path) { |
||||
var script = doc.createElement(tag); |
||||
var scriptElement = doc.getElementsByTagName(tag)[0]; |
||||
script.src = pathtoroot + path; |
||||
scriptElement.parentNode.insertBefore(script, scriptElement); |
||||
} |
||||
|
||||
function show(type) { |
||||
count = 0; |
||||
for (var key in data) { |
||||
var row = document.getElementById(key); |
||||
if ((data[key] & type) !== 0) { |
||||
row.style.display = ''; |
||||
row.className = (count++ % 2) ? rowColor : altColor; |
||||
} |
||||
else |
||||
row.style.display = 'none'; |
||||
} |
||||
updateTabs(type); |
||||
} |
||||
|
||||
function updateTabs(type) { |
||||
for (var value in tabs) { |
||||
var sNode = document.getElementById(tabs[value][0]); |
||||
var spanNode = sNode.firstChild; |
||||
if (value == type) { |
||||
sNode.className = activeTableTab; |
||||
spanNode.innerHTML = tabs[value][1]; |
||||
} |
||||
else { |
||||
sNode.className = tableTab; |
||||
spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>"; |
||||
} |
||||
} |
||||
} |
||||
|
||||
function updateModuleFrame(pFrame, cFrame) { |
||||
top.packageFrame.location = pFrame; |
||||
top.classFrame.location = cFrame; |
||||
} |
@ -0,0 +1,326 @@ |
||||
/* |
||||
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
||||
* |
||||
* This code is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License version 2 only, as |
||||
* published by the Free Software Foundation. Oracle designates this |
||||
* particular file as subject to the "Classpath" exception as provided |
||||
* by Oracle in the LICENSE file that accompanied this code. |
||||
* |
||||
* This code is distributed in the hope that it will be useful, but WITHOUT |
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
||||
* version 2 for more details (a copy is included in the LICENSE file that |
||||
* accompanied this code). |
||||
* |
||||
* You should have received a copy of the GNU General Public License version |
||||
* 2 along with this work; if not, write to the Free Software Foundation, |
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
||||
* |
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
||||
* or visit www.oracle.com if you need additional information or have any |
||||
* questions. |
||||
*/ |
||||
|
||||
var noResult = {l: "No results found"}; |
||||
var catModules = "Modules"; |
||||
var catPackages = "Packages"; |
||||
var catTypes = "Types"; |
||||
var catMembers = "Members"; |
||||
var catSearchTags = "SearchTags"; |
||||
var highlight = "<span class=\"resultHighlight\">$&</span>"; |
||||
var camelCaseRegexp = ""; |
||||
var secondaryMatcher = ""; |
||||
function getHighlightedText(item) { |
||||
var ccMatcher = new RegExp(camelCaseRegexp); |
||||
var label = item.replace(ccMatcher, highlight); |
||||
if (label === item) { |
||||
label = item.replace(secondaryMatcher, highlight); |
||||
} |
||||
return label; |
||||
} |
||||
function getURLPrefix(ui) { |
||||
var urlPrefix=""; |
||||
if (useModuleDirectories) { |
||||
var slash = "/"; |
||||
if (ui.item.category === catModules) { |
||||
return ui.item.l + slash; |
||||
} else if (ui.item.category === catPackages && ui.item.m) { |
||||
return ui.item.m + slash; |
||||
} else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) { |
||||
$.each(packageSearchIndex, function(index, item) { |
||||
if (item.m && ui.item.p == item.l) { |
||||
urlPrefix = item.m + slash; |
||||
} |
||||
}); |
||||
return urlPrefix; |
||||
} else { |
||||
return urlPrefix; |
||||
} |
||||
} |
||||
return urlPrefix; |
||||
} |
||||
var watermark = 'Search'; |
||||
$(function() { |
||||
$("#search").val(''); |
||||
$("#search").prop("disabled", false); |
||||
$("#reset").prop("disabled", false); |
||||
$("#search").val(watermark).addClass('watermark'); |
||||
$("#search").blur(function() { |
||||
if ($(this).val().length == 0) { |
||||
$(this).val(watermark).addClass('watermark'); |
||||
} |
||||
}); |
||||
$("#search").on('click keydown', function() { |
||||
if ($(this).val() == watermark) { |
||||
$(this).val('').removeClass('watermark'); |
||||
} |
||||
}); |
||||
$("#reset").click(function() { |
||||
$("#search").val(''); |
||||
$("#search").focus(); |
||||
}); |
||||
$("#search").focus(); |
||||
$("#search")[0].setSelectionRange(0, 0); |
||||
}); |
||||
$.widget("custom.catcomplete", $.ui.autocomplete, { |
||||
_create: function() { |
||||
this._super(); |
||||
this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); |
||||
}, |
||||
_renderMenu: function(ul, items) { |
||||
var rMenu = this, |
||||
currentCategory = ""; |
||||
rMenu.menu.bindings = $(); |
||||
$.each(items, function(index, item) { |
||||
var li; |
||||
if (item.l !== noResult.l && item.category !== currentCategory) { |
||||
ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>"); |
||||
currentCategory = item.category; |
||||
} |
||||
li = rMenu._renderItemData(ul, item); |
||||
if (item.category) { |
||||
li.attr("aria-label", item.category + " : " + item.l); |
||||
li.attr("class", "resultItem"); |
||||
} else { |
||||
li.attr("aria-label", item.l); |
||||
li.attr("class", "resultItem"); |
||||
} |
||||
}); |
||||
}, |
||||
_renderItem: function(ul, item) { |
||||
var label = ""; |
||||
if (item.category === catModules) { |
||||
label = getHighlightedText(item.l); |
||||
} else if (item.category === catPackages) { |
||||
label = (item.m) |
||||
? getHighlightedText(item.m + "/" + item.l) |
||||
: getHighlightedText(item.l); |
||||
} else if (item.category === catTypes) { |
||||
label = (item.p) |
||||
? getHighlightedText(item.p + "." + item.l) |
||||
: getHighlightedText(item.l); |
||||
} else if (item.category === catMembers) { |
||||
label = getHighlightedText(item.p + "." + (item.c + "." + item.l)); |
||||
} else if (item.category === catSearchTags) { |
||||
label = getHighlightedText(item.l); |
||||
} else { |
||||
label = item.l; |
||||
} |
||||
var li = $("<li/>").appendTo(ul); |
||||
var div = $("<div/>").appendTo(li); |
||||
if (item.category === catSearchTags) { |
||||
if (item.d) { |
||||
div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span><br><span class=\"searchTagDescResult\">" |
||||
+ item.d + "</span><br>"); |
||||
} else { |
||||
div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span>"); |
||||
} |
||||
} else { |
||||
div.html(label); |
||||
} |
||||
return li; |
||||
} |
||||
}); |
||||
$(function() { |
||||
$("#search").catcomplete({ |
||||
minLength: 1, |
||||
delay: 100, |
||||
source: function(request, response) { |
||||
var result = new Array(); |
||||
var presult = new Array(); |
||||
var tresult = new Array(); |
||||
var mresult = new Array(); |
||||
var tgresult = new Array(); |
||||
var secondaryresult = new Array(); |
||||
var displayCount = 0; |
||||
var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i"); |
||||
camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)"); |
||||
var camelCaseMatcher = new RegExp("^" + camelCaseRegexp); |
||||
secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i"); |
||||
|
||||
// Return the nested innermost name from the specified object
|
||||
function nestedName(e) { |
||||
return e.l.substring(e.l.lastIndexOf(".") + 1); |
||||
} |
||||
|
||||
function concatResults(a1, a2) { |
||||
a1 = a1.concat(a2); |
||||
a2.length = 0; |
||||
return a1; |
||||
} |
||||
|
||||
if (moduleSearchIndex) { |
||||
var mdleCount = 0; |
||||
$.each(moduleSearchIndex, function(index, item) { |
||||
item.category = catModules; |
||||
if (exactMatcher.test(item.l)) { |
||||
result.push(item); |
||||
mdleCount++; |
||||
} else if (camelCaseMatcher.test(item.l)) { |
||||
result.push(item); |
||||
} else if (secondaryMatcher.test(item.l)) { |
||||
secondaryresult.push(item); |
||||
} |
||||
}); |
||||
displayCount = mdleCount; |
||||
result = concatResults(result, secondaryresult); |
||||
} |
||||
if (packageSearchIndex) { |
||||
var pCount = 0; |
||||
var pkg = ""; |
||||
$.each(packageSearchIndex, function(index, item) { |
||||
item.category = catPackages; |
||||
pkg = (item.m) |
||||
? (item.m + "/" + item.l) |
||||
: item.l; |
||||
if (exactMatcher.test(item.l)) { |
||||
presult.push(item); |
||||
pCount++; |
||||
} else if (camelCaseMatcher.test(pkg)) { |
||||
presult.push(item); |
||||
} else if (secondaryMatcher.test(pkg)) { |
||||
secondaryresult.push(item); |
||||
} |
||||
}); |
||||
result = result.concat(concatResults(presult, secondaryresult)); |
||||
displayCount = (pCount > displayCount) ? pCount : displayCount; |
||||
} |
||||
if (typeSearchIndex) { |
||||
var tCount = 0; |
||||
$.each(typeSearchIndex, function(index, item) { |
||||
item.category = catTypes; |
||||
var s = nestedName(item); |
||||
if (exactMatcher.test(s)) { |
||||
tresult.push(item); |
||||
tCount++; |
||||
} else if (camelCaseMatcher.test(s)) { |
||||
tresult.push(item); |
||||
} else if (secondaryMatcher.test(item.p + "." + item.l)) { |
||||
secondaryresult.push(item); |
||||
} |
||||
}); |
||||
result = result.concat(concatResults(tresult, secondaryresult)); |
||||
displayCount = (tCount > displayCount) ? tCount : displayCount; |
||||
} |
||||
if (memberSearchIndex) { |
||||
var mCount = 0; |
||||
$.each(memberSearchIndex, function(index, item) { |
||||
item.category = catMembers; |
||||
var s = nestedName(item); |
||||
if (exactMatcher.test(s)) { |
||||
mresult.push(item); |
||||
mCount++; |
||||
} else if (camelCaseMatcher.test(s)) { |
||||
mresult.push(item); |
||||
} else if (secondaryMatcher.test(item.c + "." + item.l)) { |
||||
secondaryresult.push(item); |
||||
} |
||||
}); |
||||
result = result.concat(concatResults(mresult, secondaryresult)); |
||||
displayCount = (mCount > displayCount) ? mCount : displayCount; |
||||
} |
||||
if (tagSearchIndex) { |
||||
var tgCount = 0; |
||||
$.each(tagSearchIndex, function(index, item) { |
||||
item.category = catSearchTags; |
||||
if (exactMatcher.test(item.l)) { |
||||
tgresult.push(item); |
||||
tgCount++; |
||||
} else if (secondaryMatcher.test(item.l)) { |
||||
secondaryresult.push(item); |
||||
} |
||||
}); |
||||
result = result.concat(concatResults(tgresult, secondaryresult)); |
||||
displayCount = (tgCount > displayCount) ? tgCount : displayCount; |
||||
} |
||||
displayCount = (displayCount > 500) ? displayCount : 500; |
||||
var counter = function() { |
||||
var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0}; |
||||
var f = function(item) { |
||||
count[item.category] += 1; |
||||
return (count[item.category] <= displayCount); |
||||
}; |
||||
return f; |
||||
}(); |
||||
response(result.filter(counter)); |
||||
}, |
||||
response: function(event, ui) { |
||||
if (!ui.content.length) { |
||||
ui.content.push(noResult); |
||||
} else { |
||||
$("#search").empty(); |
||||
} |
||||
}, |
||||
autoFocus: true, |
||||
position: { |
||||
collision: "flip" |
||||
}, |
||||
select: function(event, ui) { |
||||
if (ui.item.l !== noResult.l) { |
||||
var url = getURLPrefix(ui); |
||||
if (ui.item.category === catModules) { |
||||
if (useModuleDirectories) { |
||||
url += "module-summary.html"; |
||||
} else { |
||||
url = ui.item.l + "-summary.html"; |
||||
} |
||||
} else if (ui.item.category === catPackages) { |
||||
if (ui.item.url) { |
||||
url = ui.item.url; |
||||
} else { |
||||
url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; |
||||
} |
||||
} else if (ui.item.category === catTypes) { |
||||
if (ui.item.url) { |
||||
url = ui.item.url; |
||||
} else if (ui.item.p === "<Unnamed>") { |
||||
url += ui.item.l + ".html"; |
||||
} else { |
||||
url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; |
||||
} |
||||
} else if (ui.item.category === catMembers) { |
||||
if (ui.item.p === "<Unnamed>") { |
||||
url += ui.item.c + ".html" + "#"; |
||||
} else { |
||||
url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; |
||||
} |
||||
if (ui.item.url) { |
||||
url += ui.item.url; |
||||
} else { |
||||
url += ui.item.l; |
||||
} |
||||
} else if (ui.item.category === catSearchTags) { |
||||
url += ui.item.u; |
||||
} |
||||
if (top !== window) { |
||||
parent.classFrame.location = pathtoroot + url; |
||||
} else { |
||||
window.location.href = pathtoroot + url; |
||||
} |
||||
$("#search").focus(); |
||||
} |
||||
} |
||||
}); |
||||
}); |
@ -0,0 +1,253 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Serialized Form</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Serialized Form"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "./"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="Serialized Form" class="title">Serialized Form</h1> |
||||
</div> |
||||
<div class="serializedFormContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<section> |
||||
<h2 title="Package">Package sig.engine</h2> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="sig.engine.Panel"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="sig/engine/Panel.html" title="class in sig.engine">sig.engine.Panel</a> extends javax.swing.JPanel implements Serializable</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h3>Serialized Fields</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>button</h4> |
||||
<pre>int button</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>CIRCLE_PRECISION</h4> |
||||
<pre>int CIRCLE_PRECISION</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>cm</h4> |
||||
<pre>java.awt.image.ColorModel cm</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>frameCount</h4> |
||||
<pre>int frameCount</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>imageBuffer</h4> |
||||
<pre>java.awt.Image imageBuffer</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>lastSecond</h4> |
||||
<pre>long lastSecond</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>lastUpdate</h4> |
||||
<pre>long lastUpdate</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>mImageProducer</h4> |
||||
<pre>java.awt.image.MemoryImageSource mImageProducer</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>nanaX</h4> |
||||
<pre>double nanaX</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>nanaY</h4> |
||||
<pre>double nanaY</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>nextScanLine</h4> |
||||
<pre>int nextScanLine</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>OUTLINE_COL</h4> |
||||
<pre>int OUTLINE_COL</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>pixel</h4> |
||||
<pre>int[] pixel</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>resizing</h4> |
||||
<pre>boolean resizing</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>scanLine</h4> |
||||
<pre>int scanLine</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>scrollWheel</h4> |
||||
<pre><a href="sig/engine/MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a> scrollWheel</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>TARGET_FRAMETIME</h4> |
||||
<pre>long TARGET_FRAMETIME</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>thread</h4> |
||||
<pre>java.lang.Thread thread</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>window</h4> |
||||
<pre>javax.swing.JFrame window</pre> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>x_offset</h4> |
||||
<pre>double x_offset</pre> |
||||
</li> |
||||
<li class="blockListLast"> |
||||
<h4>y_offset</h4> |
||||
<pre>double y_offset</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="index.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,381 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>JavaProjectTemplate</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../script.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="JavaProjectTemplate"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":9,"i2":10}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig</a></div> |
||||
<h2 title="Class JavaProjectTemplate" class="title">Class JavaProjectTemplate</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.JavaProjectTemplate</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">JavaProjectTemplate</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Field</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="engine/Panel.html" title="class in sig.engine">Panel</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#game">game</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#PROGRAM_NAME">PROGRAM_NAME</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#WINDOW_HEIGHT">WINDOW_HEIGHT</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#WINDOW_WIDTH">WINDOW_WIDTH</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#drawGame()">drawGame</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String%5B%5D)">main</a></span>​(java.lang.String[] args)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#updateGame(double)">updateGame</a></span>​(double fElapsedTime)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a id="PROGRAM_NAME"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>PROGRAM_NAME</h4> |
||||
<pre>public static final java.lang.String PROGRAM_NAME</pre> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../constant-values.html#sig.JavaProjectTemplate.PROGRAM_NAME">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="WINDOW_WIDTH"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>WINDOW_WIDTH</h4> |
||||
<pre>public static int WINDOW_WIDTH</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="WINDOW_HEIGHT"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>WINDOW_HEIGHT</h4> |
||||
<pre>public static int WINDOW_HEIGHT</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="game"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>game</h4> |
||||
<pre>public static <a href="engine/Panel.html" title="class in sig.engine">Panel</a> game</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="updateGame(double)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>updateGame</h4> |
||||
<pre class="methodSignature">public void updateGame​(double fElapsedTime)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="drawGame()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>drawGame</h4> |
||||
<pre class="methodSignature">public void drawGame()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="main(java.lang.String[])"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>main</h4> |
||||
<pre class="methodSignature">public static void main​(java.lang.String[] args)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,388 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>AnimatedSprite</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="AnimatedSprite"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class AnimatedSprite" class="title">Class AnimatedSprite</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="Sprite.html" title="class in sig.engine">sig.engine.Sprite</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.AnimatedSprite</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">AnimatedSprite</span> |
||||
extends <a href="Sprite.html" title="class in sig.engine">Sprite</a></pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="fields.inherited.from.class.sig.engine.Sprite"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class sig.engine.<a href="Sprite.html" title="class in sig.engine">Sprite</a></h3> |
||||
<code><a href="Sprite.html#PROFONT">PROFONT</a>, <a href="Sprite.html#PROFONT_36">PROFONT_36</a>, <a href="Sprite.html#SPRITES_FOLDER">SPRITES_FOLDER</a></code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String,int,int)">AnimatedSprite</a></span>​(java.lang.String filename, |
||||
int width, |
||||
int height)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCanvasHeight()">getCanvasHeight</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCanvasWidth()">getCanvasWidth</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code><a href="Rectangle.html" title="class in sig.engine">Rectangle</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFrame(int)">getFrame</a></span>​(int index)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFrame_count()">getFrame_count</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.sig.engine.Sprite"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class sig.engine.<a href="Sprite.html" title="class in sig.engine">Sprite</a></h3> |
||||
<code><a href="Sprite.html#getHeight()">getHeight</a>, <a href="Sprite.html#getImg()">getImg</a>, <a href="Sprite.html#getWidth()">getWidth</a>, <a href="Sprite.html#setHeight(int)">setHeight</a>, <a href="Sprite.html#setImg(java.awt.image.BufferedImage)">setImg</a>, <a href="Sprite.html#setWidth(int)">setWidth</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(java.lang.String,int,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>AnimatedSprite</h4> |
||||
<pre>public AnimatedSprite​(java.lang.String filename, |
||||
int width, |
||||
int height)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getFrame(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getFrame</h4> |
||||
<pre class="methodSignature">public <a href="Rectangle.html" title="class in sig.engine">Rectangle</a> getFrame​(int index)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getFrame_count()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getFrame_count</h4> |
||||
<pre class="methodSignature">public int getFrame_count()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getCanvasHeight()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getCanvasHeight</h4> |
||||
<pre class="methodSignature">public int getCanvasHeight()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="Sprite.html#getCanvasHeight()">getCanvasHeight</a></code> in class <code><a href="Sprite.html" title="class in sig.engine">Sprite</a></code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="getCanvasWidth()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getCanvasWidth</h4> |
||||
<pre class="methodSignature">public int getCanvasWidth()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="Sprite.html#getCanvasWidth()">getCanvasWidth</a></code> in class <code><a href="Sprite.html" title="class in sig.engine">Sprite</a></code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,668 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Color</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Color"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Color" class="title">Class Color</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Color</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Color</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Field</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BLACK">BLACK</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BLUE">BLUE</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_BLACK">BRIGHT_BLACK</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_BLUE">BRIGHT_BLUE</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_CYAN">BRIGHT_CYAN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_GREEN">BRIGHT_GREEN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_MAGENTA">BRIGHT_MAGENTA</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_RED">BRIGHT_RED</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_WHITE">BRIGHT_WHITE</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BRIGHT_YELLOW">BRIGHT_YELLOW</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CYAN">CYAN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#GREEN">GREEN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MAGENTA">MAGENTA</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#RED">RED</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#WHITE">WHITE</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#YELLOW">YELLOW</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(float,float,float)">Color</a></span>​(float r, |
||||
float g, |
||||
float b)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(float,float,float,float)">Color</a></span>​(float r, |
||||
float g, |
||||
float b, |
||||
float a)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int)">Color</a></span>​(int rgb)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int,int,int)">Color</a></span>​(int r, |
||||
int g, |
||||
int b)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int,int,int,int)">Color</a></span>​(int r, |
||||
int g, |
||||
int b, |
||||
int a)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected <a href="Color.html" title="class in sig.engine">Color</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clone()">clone</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getColor()">getColor</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a id="BLACK"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BLACK</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BLACK</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="RED"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>RED</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> RED</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="GREEN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>GREEN</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> GREEN</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="YELLOW"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>YELLOW</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> YELLOW</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BLUE"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BLUE</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BLUE</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="MAGENTA"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>MAGENTA</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> MAGENTA</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="CYAN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>CYAN</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> CYAN</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="WHITE"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>WHITE</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> WHITE</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_BLACK"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_BLACK</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_BLACK</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_RED"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_RED</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_RED</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_GREEN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_GREEN</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_GREEN</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_YELLOW"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_YELLOW</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_YELLOW</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_BLUE"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_BLUE</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_BLUE</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_MAGENTA"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_MAGENTA</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_MAGENTA</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_CYAN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_CYAN</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_CYAN</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="BRIGHT_WHITE"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>BRIGHT_WHITE</h4> |
||||
<pre>public static final <a href="Color.html" title="class in sig.engine">Color</a> BRIGHT_WHITE</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(int,int,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Color</h4> |
||||
<pre>public Color​(int r, |
||||
int g, |
||||
int b)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(float,float,float)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Color</h4> |
||||
<pre>public Color​(float r, |
||||
float g, |
||||
float b)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(float,float,float,float)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Color</h4> |
||||
<pre>public Color​(float r, |
||||
float g, |
||||
float b, |
||||
float a)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(int,int,int,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Color</h4> |
||||
<pre>public Color​(int r, |
||||
int g, |
||||
int b, |
||||
int a)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Color</h4> |
||||
<pre>public Color​(int rgb)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getColor()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getColor</h4> |
||||
<pre class="methodSignature">public int getColor()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="toString()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>toString</h4> |
||||
<pre class="methodSignature">public java.lang.String toString()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>toString</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="clone()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>clone</h4> |
||||
<pre class="methodSignature">protected <a href="Color.html" title="class in sig.engine">Color</a> clone() |
||||
throws java.lang.CloneNotSupportedException</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>clone</code> in class <code>java.lang.Object</code></dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.CloneNotSupportedException</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,311 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Edge</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Edge"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Edge" class="title">Class Edge</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Edge</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Edge</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(sig.engine.Point,sig.engine.Point)">Edge</a></span>​(<a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> a, |
||||
<a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> b)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(sig.engine.Point,sig.engine.Point)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Edge</h4> |
||||
<pre>public Edge​(<a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> a, |
||||
<a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> b)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="toString()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>toString</h4> |
||||
<pre class="methodSignature">public java.lang.String toString()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>toString</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,447 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Font</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Font"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Enum Font" class="title">Enum Font</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Enum<<a href="Font.html" title="enum in sig.engine">Font</a>></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Font</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="Font.html" title="enum in sig.engine">Font</a>></code></dd> |
||||
</dl> |
||||
<hr> |
||||
<pre>public enum <span class="typeNameLabel">Font</span> |
||||
extends java.lang.Enum<<a href="Font.html" title="enum in sig.engine">Font</a>></pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== ENUM CONSTANT SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Enum Constant</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#PROFONT_12">PROFONT_12</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#PROFONT_36">PROFONT_36</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="Rectangle.html" title="class in sig.engine">Rectangle</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCharacterBounds(char)">getCharacterBounds</a></span>​(char c)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code><a href="Rectangle.html" title="class in sig.engine">Rectangle</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCharInfo(char)">getCharInfo</a></span>​(char c)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>byte</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGlyphHeight()">getGlyphHeight</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>byte</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGlyphWidth()">getGlyphWidth</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code><a href="Sprite.html" title="class in sig.engine">Sprite</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSprite()">getSprite</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Font.html" title="enum in sig.engine">Font</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Font.html" title="enum in sig.engine">Font</a>[]</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Enum</h3> |
||||
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ ENUM CONSTANT DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Detail</h3> |
||||
<a id="PROFONT_12"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>PROFONT_12</h4> |
||||
<pre>public static final <a href="Font.html" title="enum in sig.engine">Font</a> PROFONT_12</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="PROFONT_36"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>PROFONT_36</h4> |
||||
<pre>public static final <a href="Font.html" title="enum in sig.engine">Font</a> PROFONT_36</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="values()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>values</h4> |
||||
<pre class="methodSignature">public static <a href="Font.html" title="enum in sig.engine">Font</a>[] values()</pre> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared. This method may be used to iterate |
||||
over the constants as follows: |
||||
<pre> |
||||
for (Font c : Font.values()) |
||||
System.out.println(c); |
||||
</pre></div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an array containing the constants of this enum type, in the order they are declared</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="valueOf(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>valueOf</h4> |
||||
<pre class="methodSignature">public static <a href="Font.html" title="enum in sig.engine">Font</a> valueOf​(java.lang.String name)</pre> |
||||
<div class="block">Returns the enum constant of this type with the specified name. |
||||
The string must match <i>exactly</i> an identifier used to declare an |
||||
enum constant in this type. (Extraneous whitespace characters are |
||||
not permitted.)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>name</code> - the name of the enum constant to be returned.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the enum constant with the specified name</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> |
||||
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="getCharacterBounds(char)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getCharacterBounds</h4> |
||||
<pre class="methodSignature">public <a href="Rectangle.html" title="class in sig.engine">Rectangle</a> getCharacterBounds​(char c)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getGlyphWidth()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getGlyphWidth</h4> |
||||
<pre class="methodSignature">public byte getGlyphWidth()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getGlyphHeight()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getGlyphHeight</h4> |
||||
<pre class="methodSignature">public byte getGlyphHeight()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getCharInfo(char)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getCharInfo</h4> |
||||
<pre class="methodSignature">public <a href="Rectangle.html" title="class in sig.engine">Rectangle</a> getCharInfo​(char c)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getSprite()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getSprite</h4> |
||||
<pre class="methodSignature">public <a href="Sprite.html" title="class in sig.engine">Sprite</a> getSprite()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,379 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Key</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Key"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":9,"i2":10,"i3":9,"i4":9,"i5":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Key" class="title">Class Key</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Key</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Key</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier</th> |
||||
<th class="colSecond" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected </code></td> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int)">Key</a></span>​(int keycode)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKeyCode()">getKeyCode</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isHeld(int)">isHeld</a></span>​(int keycode)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isKeyHeld()">isKeyHeld</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isPressed(int)">isPressed</a></span>​(int keycode)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isReleased(int)">isReleased</a></span>​(int keycode)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setKeyHeld(int,boolean)">setKeyHeld</a></span>​(int keycode, |
||||
boolean pressed)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Key</h4> |
||||
<pre>protected Key​(int keycode)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getKeyCode()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getKeyCode</h4> |
||||
<pre class="methodSignature">public int getKeyCode()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setKeyHeld(int,boolean)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setKeyHeld</h4> |
||||
<pre class="methodSignature">public static void setKeyHeld​(int keycode, |
||||
boolean pressed)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isHeld(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isHeld</h4> |
||||
<pre class="methodSignature">public static boolean isHeld​(int keycode)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isPressed(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isPressed</h4> |
||||
<pre class="methodSignature">public static boolean isPressed​(int keycode)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isReleased(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isReleased</h4> |
||||
<pre class="methodSignature">public static boolean isReleased​(int keycode)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isKeyHeld()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>isKeyHeld</h4> |
||||
<pre class="methodSignature">public boolean isKeyHeld()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,459 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Mouse</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Mouse"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":9,"i1":9,"i2":9,"i3":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Mouse" class="title">Class Mouse</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Mouse</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Mouse</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Field</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.util.HashMap<java.lang.Integer,​java.lang.Boolean></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clickMap">clickMap</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mousePosition">mousePosition</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.util.HashMap<java.lang.Integer,​java.lang.Boolean></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pressMap">pressMap</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static java.util.HashMap<java.lang.Integer,​java.lang.Boolean></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#releaseMap">releaseMap</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#x">x</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#y">y</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">Mouse</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#GetPos()">GetPos</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isHeld(java.lang.Integer)">isHeld</a></span>​(java.lang.Integer button)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isPressed(java.lang.Integer)">isPressed</a></span>​(java.lang.Integer button)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isReleased(java.lang.Integer)">isReleased</a></span>​(java.lang.Integer button)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a id="x"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>x</h4> |
||||
<pre>public static int x</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="y"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>y</h4> |
||||
<pre>public static int y</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="clickMap"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>clickMap</h4> |
||||
<pre>public static java.util.HashMap<java.lang.Integer,​java.lang.Boolean> clickMap</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="pressMap"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>pressMap</h4> |
||||
<pre>public static java.util.HashMap<java.lang.Integer,​java.lang.Boolean> pressMap</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="releaseMap"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>releaseMap</h4> |
||||
<pre>public static java.util.HashMap<java.lang.Integer,​java.lang.Boolean> releaseMap</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="mousePosition"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>mousePosition</h4> |
||||
<pre>public static <a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> mousePosition</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Mouse</h4> |
||||
<pre>public Mouse()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="GetPos()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>GetPos</h4> |
||||
<pre class="methodSignature">public static <a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> GetPos()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isHeld(java.lang.Integer)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isHeld</h4> |
||||
<pre class="methodSignature">public static boolean isHeld​(java.lang.Integer button)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isPressed(java.lang.Integer)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isPressed</h4> |
||||
<pre class="methodSignature">public static boolean isPressed​(java.lang.Integer button)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="isReleased(java.lang.Integer)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>isReleased</h4> |
||||
<pre class="methodSignature">public static boolean isReleased​(java.lang.Integer button)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,391 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>MouseScrollValue</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="MouseScrollValue"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":9,"i1":9,"i2":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Enum MouseScrollValue" class="title">Enum MouseScrollValue</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Enum<<a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a>></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.MouseScrollValue</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a>></code></dd> |
||||
</dl> |
||||
<hr> |
||||
<pre>public enum <span class="typeNameLabel">MouseScrollValue</span> |
||||
extends java.lang.Enum<<a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a>></pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== ENUM CONSTANT SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Enum Constant</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DOWN">DOWN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#UP">UP</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getValue(int)">getValue</a></span>​(int value)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a>[]</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Enum</h3> |
||||
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ ENUM CONSTANT DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Detail</h3> |
||||
<a id="UP"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>UP</h4> |
||||
<pre>public static final <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a> UP</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="DOWN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>DOWN</h4> |
||||
<pre>public static final <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a> DOWN</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="values()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>values</h4> |
||||
<pre class="methodSignature">public static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a>[] values()</pre> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared. This method may be used to iterate |
||||
over the constants as follows: |
||||
<pre> |
||||
for (MouseScrollValue c : MouseScrollValue.values()) |
||||
System.out.println(c); |
||||
</pre></div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an array containing the constants of this enum type, in the order they are declared</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="valueOf(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>valueOf</h4> |
||||
<pre class="methodSignature">public static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a> valueOf​(java.lang.String name)</pre> |
||||
<div class="block">Returns the enum constant of this type with the specified name. |
||||
The string must match <i>exactly</i> an identifier used to declare an |
||||
enum constant in this type. (Extraneous whitespace characters are |
||||
not permitted.)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>name</code> - the name of the enum constant to be returned.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the enum constant with the specified name</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> |
||||
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="getValue(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getValue</h4> |
||||
<pre class="methodSignature">public static <a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a> getValue​(int value)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,486 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Point</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Point"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Point" class="title">Class Point<T></h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Point<T></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Point<T></span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Field</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="type parameter in Point">T</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#x">x</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="type parameter in Point">T</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#y">y</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(T,T)">Point</a></span>​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="class in sig.engine">Point</a><<a href="Point.html" title="type parameter in Point">T</a>></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clone()">clone</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="type parameter in Point">T</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getX()">getX</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="type parameter in Point">T</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getY()">getY</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#set(T,T)">set</a></span>​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setX(T)">setX</a></span>​(<a href="Point.html" title="type parameter in Point">T</a> x)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setY(T)">setY</a></span>​(<a href="Point.html" title="type parameter in Point">T</a> y)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#update(T,T)">update</a></span>​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a id="x"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>x</h4> |
||||
<pre>public <a href="Point.html" title="type parameter in Point">T</a> x</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="y"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>y</h4> |
||||
<pre>public <a href="Point.html" title="type parameter in Point">T</a> y</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(java.lang.Object,java.lang.Object)"> |
||||
<!-- --> |
||||
</a><a id="<init>(T,T)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Point</h4> |
||||
<pre>public Point​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getX()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getX</h4> |
||||
<pre class="methodSignature">public <a href="Point.html" title="type parameter in Point">T</a> getX()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setX(java.lang.Object)"> |
||||
<!-- --> |
||||
</a><a id="setX(T)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setX</h4> |
||||
<pre class="methodSignature">public void setX​(<a href="Point.html" title="type parameter in Point">T</a> x)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getY()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getY</h4> |
||||
<pre class="methodSignature">public <a href="Point.html" title="type parameter in Point">T</a> getY()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setY(java.lang.Object)"> |
||||
<!-- --> |
||||
</a><a id="setY(T)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setY</h4> |
||||
<pre class="methodSignature">public void setY​(<a href="Point.html" title="type parameter in Point">T</a> y)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="set(java.lang.Object,java.lang.Object)"> |
||||
<!-- --> |
||||
</a><a id="set(T,T)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>set</h4> |
||||
<pre class="methodSignature">public void set​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="update(java.lang.Object,java.lang.Object)"> |
||||
<!-- --> |
||||
</a><a id="update(T,T)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>update</h4> |
||||
<pre class="methodSignature">public void update​(<a href="Point.html" title="type parameter in Point">T</a> x, |
||||
<a href="Point.html" title="type parameter in Point">T</a> y)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="toString()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>toString</h4> |
||||
<pre class="methodSignature">public java.lang.String toString()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>toString</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="clone()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>clone</h4> |
||||
<pre class="methodSignature">public <a href="Point.html" title="class in sig.engine">Point</a><<a href="Point.html" title="type parameter in Point">T</a>> clone() |
||||
throws java.lang.CloneNotSupportedException</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>clone</code> in class <code>java.lang.Object</code></dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.CloneNotSupportedException</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,390 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>PolygonStructure</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="PolygonStructure"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":9,"i1":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Enum PolygonStructure" class="title">Enum PolygonStructure</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Enum<<a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a>></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.PolygonStructure</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a>></code></dd> |
||||
</dl> |
||||
<hr> |
||||
<pre>public enum <span class="typeNameLabel">PolygonStructure</span> |
||||
extends java.lang.Enum<<a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a>></pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== ENUM CONSTANT SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Enum Constant</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FAN">FAN</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#LIST">LIST</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STRIP">STRIP</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a>[]</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Enum</h3> |
||||
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ ENUM CONSTANT DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Detail</h3> |
||||
<a id="LIST"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>LIST</h4> |
||||
<pre>public static final <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a> LIST</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="STRIP"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>STRIP</h4> |
||||
<pre>public static final <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a> STRIP</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="FAN"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>FAN</h4> |
||||
<pre>public static final <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a> FAN</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="values()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>values</h4> |
||||
<pre class="methodSignature">public static <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a>[] values()</pre> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared. This method may be used to iterate |
||||
over the constants as follows: |
||||
<pre> |
||||
for (PolygonStructure c : PolygonStructure.values()) |
||||
System.out.println(c); |
||||
</pre></div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an array containing the constants of this enum type, in the order they are declared</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="valueOf(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>valueOf</h4> |
||||
<pre class="methodSignature">public static <a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a> valueOf​(java.lang.String name)</pre> |
||||
<div class="block">Returns the enum constant of this type with the specified name. |
||||
The string must match <i>exactly</i> an identifier used to declare an |
||||
enum constant in this type. (Extraneous whitespace characters are |
||||
not permitted.)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>name</code> - the name of the enum constant to be returned.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the enum constant with the specified name</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> |
||||
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,455 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Rectangle</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Rectangle"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Rectangle" class="title">Class Rectangle</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Rectangle</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Rectangle</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int,int,int,int)">Rectangle</a></span>​(int x, |
||||
int y, |
||||
int w, |
||||
int h)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getHeight()">getHeight</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getWidth()">getWidth</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getX()">getX</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getX2()">getX2</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getY()">getY</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getY2()">getY2</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setHeight(int)">setHeight</a></span>​(int h)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setWidth(int)">setWidth</a></span>​(int w)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i8" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setX(int)">setX</a></span>​(int x)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i9" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setY(int)">setY</a></span>​(int y)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i10" class="altColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(int,int,int,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Rectangle</h4> |
||||
<pre>public Rectangle​(int x, |
||||
int y, |
||||
int w, |
||||
int h)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getX()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getX</h4> |
||||
<pre class="methodSignature">public int getX()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getX2()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getX2</h4> |
||||
<pre class="methodSignature">public int getX2()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setX(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setX</h4> |
||||
<pre class="methodSignature">public void setX​(int x)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getY()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getY</h4> |
||||
<pre class="methodSignature">public int getY()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getY2()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getY2</h4> |
||||
<pre class="methodSignature">public int getY2()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setY(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setY</h4> |
||||
<pre class="methodSignature">public void setY​(int y)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getWidth()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getWidth</h4> |
||||
<pre class="methodSignature">public int getWidth()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setWidth(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setWidth</h4> |
||||
<pre class="methodSignature">public void setWidth​(int w)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getHeight()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getHeight</h4> |
||||
<pre class="methodSignature">public int getHeight()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setHeight(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setHeight</h4> |
||||
<pre class="methodSignature">public void setHeight​(int h)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="toString()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>toString</h4> |
||||
<pre class="methodSignature">public java.lang.String toString()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>toString</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,477 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Sprite</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Sprite"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class Sprite" class="title">Class Sprite</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Sprite</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><code><a href="AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></code></dd> |
||||
</dl> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">Sprite</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Field</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Sprite.html" title="class in sig.engine">Sprite</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#PROFONT">PROFONT</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Sprite.html" title="class in sig.engine">Sprite</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#PROFONT_36">PROFONT_36</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.io.File</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SPRITES_FOLDER">SPRITES_FOLDER</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">Sprite</a></span>​(java.lang.String filename)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCanvasHeight()">getCanvasHeight</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCanvasWidth()">getCanvasWidth</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getHeight()">getHeight</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>java.awt.image.BufferedImage</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getImg()">getImg</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getWidth()">getWidth</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setHeight(int)">setHeight</a></span>​(int height)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setImg(java.awt.image.BufferedImage)">setImg</a></span>​(java.awt.image.BufferedImage img)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setWidth(int)">setWidth</a></span>​(int width)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a id="SPRITES_FOLDER"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>SPRITES_FOLDER</h4> |
||||
<pre>public static final java.io.File SPRITES_FOLDER</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="PROFONT"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>PROFONT</h4> |
||||
<pre>public static final <a href="Sprite.html" title="class in sig.engine">Sprite</a> PROFONT</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="PROFONT_36"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>PROFONT_36</h4> |
||||
<pre>public static final <a href="Sprite.html" title="class in sig.engine">Sprite</a> PROFONT_36</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Sprite</h4> |
||||
<pre>public Sprite​(java.lang.String filename)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="getImg()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getImg</h4> |
||||
<pre class="methodSignature">public java.awt.image.BufferedImage getImg()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setImg(java.awt.image.BufferedImage)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setImg</h4> |
||||
<pre class="methodSignature">public void setImg​(java.awt.image.BufferedImage img)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getHeight()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getHeight</h4> |
||||
<pre class="methodSignature">public int getHeight()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getCanvasHeight()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getCanvasHeight</h4> |
||||
<pre class="methodSignature">public int getCanvasHeight()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setHeight(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>setHeight</h4> |
||||
<pre class="methodSignature">public void setHeight​(int height)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getWidth()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getWidth</h4> |
||||
<pre class="methodSignature">public int getWidth()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getCanvasWidth()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getCanvasWidth</h4> |
||||
<pre class="methodSignature">public int getCanvasWidth()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="setWidth(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>setWidth</h4> |
||||
<pre class="methodSignature">public void setWidth​(int width)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,622 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>String</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="String"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Class String" class="title">Class String</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.String</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<pre>public class <span class="typeNameLabel">String</span> |
||||
extends java.lang.Object</pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Constructor</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">String</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(double)">String</a></span>​(double d)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.Object)">String</a></span>​(java.lang.Object obj)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">String</a></span>​(java.lang.String str)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#append(char)">append</a></span>​(char c)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#append(double)">append</a></span>​(double d)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#append(java.lang.Object...)">append</a></span>​(java.lang.Object... obj)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clear()">clear</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code><a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBounds(sig.engine.Font)">getBounds</a></span>​(<a href="Font.html" title="enum in sig.engine">Font</a> f)</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>java.lang.StringBuilder</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBuilder()">getBuilder</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(java.lang.String)">indexOf</a></span>​(java.lang.String str)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(java.lang.String,int)">indexOf</a></span>​(java.lang.String str, |
||||
int fromIndex)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring, starting at the specified index.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i8" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#length()">length</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr id="i9" class="rowColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replace(int,int,java.lang.String)">replace</a></span>​(int start, |
||||
int end, |
||||
java.lang.String str)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Replaces the characters in a substring of this sequence |
||||
with characters in the specified <code>String</code>.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i10" class="altColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(int)">substring</a></span>​(int start)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this character sequence.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i11" class="rowColor"> |
||||
<td class="colFirst"><code><a href="String.html" title="class in sig.engine">String</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(int,int)">substring</a></span>​(int start, |
||||
int end)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this sequence.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i12" class="altColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a id="<init>()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>String</h4> |
||||
<pre>public String()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>String</h4> |
||||
<pre>public String​(java.lang.String str)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(java.lang.Object)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>String</h4> |
||||
<pre>public String​(java.lang.Object obj)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="<init>(double)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>String</h4> |
||||
<pre>public String​(double d)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="append(double)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>append</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> append​(double d)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="append(char)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>append</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> append​(char c)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="append(java.lang.Object...)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>append</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> append​(java.lang.Object... obj)</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="getBuilder()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getBuilder</h4> |
||||
<pre class="methodSignature">public java.lang.StringBuilder getBuilder()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="indexOf(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>indexOf</h4> |
||||
<pre class="methodSignature">public int indexOf​(java.lang.String str)</pre> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring. |
||||
|
||||
<p>The returned index is the smallest value <code>k</code> for which: |
||||
<pre><code> |
||||
this.toString().startsWith(str, k) |
||||
</code></pre> |
||||
If no such value of <code>k</code> exists, then <code>-1</code> is returned.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>str</code> - the substring to search for.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the index of the first occurrence of the specified substring, |
||||
or <code>-1</code> if there is no such occurrence.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="clear()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>clear</h4> |
||||
<pre class="methodSignature">public void clear()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="indexOf(java.lang.String,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>indexOf</h4> |
||||
<pre class="methodSignature">public int indexOf​(java.lang.String str, |
||||
int fromIndex)</pre> |
||||
<div class="block">Returns the index within this string of the first occurrence of the |
||||
specified substring, starting at the specified index. |
||||
|
||||
<p>The returned index is the smallest value <code>k</code> for which: |
||||
<pre><code> |
||||
k >= Math.min(fromIndex, this.length()) && |
||||
this.toString().startsWith(str, k) |
||||
</code></pre> |
||||
If no such value of <code>k</code> exists, then <code>-1</code> is returned.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>str</code> - the substring to search for.</dd> |
||||
<dd><code>fromIndex</code> - the index from which to start the search.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the index of the first occurrence of the specified substring, |
||||
starting at the specified index, |
||||
or <code>-1</code> if there is no such occurrence.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="replace(int,int,java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>replace</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> replace​(int start, |
||||
int end, |
||||
java.lang.String str)</pre> |
||||
<div class="block">Replaces the characters in a substring of this sequence |
||||
with characters in the specified <code>String</code>. The substring |
||||
begins at the specified <code>start</code> and extends to the character |
||||
at index <code>end - 1</code> or to the end of the |
||||
sequence if no such character exists. First the |
||||
characters in the substring are removed and then the specified |
||||
<code>String</code> is inserted at <code>start</code>. (This |
||||
sequence will be lengthened to accommodate the |
||||
specified String if necessary.)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>start</code> - The beginning index, inclusive.</dd> |
||||
<dd><code>end</code> - The ending index, exclusive.</dd> |
||||
<dd><code>str</code> - String that will replace previous contents.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>This object.</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.StringIndexOutOfBoundsException</code> - if <code>start</code> |
||||
is negative, greater than <code>length()</code>, or |
||||
greater than <code>end</code>.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="substring(int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>substring</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> substring​(int start)</pre> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this character sequence. The |
||||
substring begins at the specified index and extends to the end of |
||||
this sequence.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>start</code> - The beginning index, inclusive.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>The new string.</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.StringIndexOutOfBoundsException</code> - if <code>start</code> is |
||||
less than zero, or greater than the length of this object.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="substring(int,int)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>substring</h4> |
||||
<pre class="methodSignature">public <a href="String.html" title="class in sig.engine">String</a> substring​(int start, |
||||
int end)</pre> |
||||
<div class="block">Returns a new <code>String</code> that contains a subsequence of |
||||
characters currently contained in this sequence. The |
||||
substring begins at the specified <code>start</code> and |
||||
extends to the character at index <code>end - 1</code>.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>start</code> - The beginning index, inclusive.</dd> |
||||
<dd><code>end</code> - The ending index, exclusive.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>The new string.</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.StringIndexOutOfBoundsException</code> - if <code>start</code> |
||||
or <code>end</code> are negative or greater than |
||||
<code>length()</code>, or <code>start</code> is |
||||
greater than <code>end</code>.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="length()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>length</h4> |
||||
<pre class="methodSignature">public int length()</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="toString()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>toString</h4> |
||||
<pre class="methodSignature">public java.lang.String toString()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>toString</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="getBounds(sig.engine.Font)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getBounds</h4> |
||||
<pre class="methodSignature">public <a href="Point.html" title="class in sig.engine">Point</a><java.lang.Integer> getBounds​(<a href="Font.html" title="enum in sig.engine">Font</a> f)</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,403 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>Transform</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Transform"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var data = {"i0":9,"i1":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">sig.engine</a></div> |
||||
<h2 title="Enum Transform" class="title">Enum Transform</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Enum<<a href="Transform.html" title="enum in sig.engine">Transform</a>></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>sig.engine.Transform</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable<<a href="Transform.html" title="enum in sig.engine">Transform</a>></code></dd> |
||||
</dl> |
||||
<hr> |
||||
<pre>public enum <span class="typeNameLabel">Transform</span> |
||||
extends java.lang.Enum<<a href="Transform.html" title="enum in sig.engine">Transform</a>></pre> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== ENUM CONSTANT SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Enum Constant</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#HORIZ_VERTIC">HORIZ_VERTIC</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#HORIZONTAL">HORIZONTAL</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NONE">NONE</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#VERTICAL">VERTICAL</a></span></code></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colSecond" scope="col">Method</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static <a href="Transform.html" title="enum in sig.engine">Transform</a></code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(java.lang.String name)</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns the enum constant of this type with the specified name.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="Transform.html" title="enum in sig.engine">Transform</a>[]</code></td> |
||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th> |
||||
<td class="colLast"> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Enum</h3> |
||||
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ ENUM CONSTANT DETAIL =========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="enum.constant.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Enum Constant Detail</h3> |
||||
<a id="NONE"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>NONE</h4> |
||||
<pre>public static final <a href="Transform.html" title="enum in sig.engine">Transform</a> NONE</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="HORIZONTAL"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>HORIZONTAL</h4> |
||||
<pre>public static final <a href="Transform.html" title="enum in sig.engine">Transform</a> HORIZONTAL</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="VERTICAL"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>VERTICAL</h4> |
||||
<pre>public static final <a href="Transform.html" title="enum in sig.engine">Transform</a> VERTICAL</pre> |
||||
</li> |
||||
</ul> |
||||
<a id="HORIZ_VERTIC"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>HORIZ_VERTIC</h4> |
||||
<pre>public static final <a href="Transform.html" title="enum in sig.engine">Transform</a> HORIZ_VERTIC</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<section> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a id="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a id="values()"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>values</h4> |
||||
<pre class="methodSignature">public static <a href="Transform.html" title="enum in sig.engine">Transform</a>[] values()</pre> |
||||
<div class="block">Returns an array containing the constants of this enum type, in |
||||
the order they are declared. This method may be used to iterate |
||||
over the constants as follows: |
||||
<pre> |
||||
for (Transform c : Transform.values()) |
||||
System.out.println(c); |
||||
</pre></div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an array containing the constants of this enum type, in the order they are declared</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a id="valueOf(java.lang.String)"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>valueOf</h4> |
||||
<pre class="methodSignature">public static <a href="Transform.html" title="enum in sig.engine">Transform</a> valueOf​(java.lang.String name)</pre> |
||||
<div class="block">Returns the enum constant of this type with the specified name. |
||||
The string must match <i>exactly</i> an identifier used to declare an |
||||
enum constant in this type. (Extraneous whitespace characters are |
||||
not permitted.)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>name</code> - the name of the enum constant to be returned.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the enum constant with the specified name</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> |
||||
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#enum.constant.summary">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#enum.constant.detail">Enum Constants</a> | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,228 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>sig.engine</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="sig.engine"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="Package" class="title">Package sig.engine</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="typeSummary"> |
||||
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Class</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="AnimatedSprite.html" title="class in sig.engine">AnimatedSprite</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="Color.html" title="class in sig.engine">Color</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="Edge.html" title="class in sig.engine">Edge</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="Key.html" title="class in sig.engine">Key</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="Mouse.html" title="class in sig.engine">Mouse</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="Panel.html" title="class in sig.engine">Panel</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="Point.html" title="class in sig.engine">Point</a><T></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="Rectangle.html" title="class in sig.engine">Rectangle</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="Sprite.html" title="class in sig.engine">Sprite</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="String.html" title="class in sig.engine">String</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<table class="typeSummary"> |
||||
<caption><span>Enum Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Enum</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="Font.html" title="enum in sig.engine">Font</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="MouseScrollValue.html" title="enum in sig.engine">MouseScrollValue</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="PolygonStructure.html" title="enum in sig.engine">PolygonStructure</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<th class="colFirst" scope="row"><a href="Transform.html" title="enum in sig.engine">Transform</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,207 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>sig.engine Class Hierarchy</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../../script.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="sig.engine Class Hierarchy"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "../../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For Package sig.engine</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="../../overview-tree.html">All Packages</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<section> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li class="circle">java.lang.Object |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="Color.html" title="class in sig.engine"><span class="typeNameLink">Color</span></a></li> |
||||
<li class="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">java.awt.Container |
||||
<ul> |
||||
<li class="circle">javax.swing.JComponent (implements java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">javax.swing.JPanel (implements javax.accessibility.Accessible) |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="Panel.html" title="class in sig.engine"><span class="typeNameLink">Panel</span></a> (implements java.awt.event.KeyListener, java.lang.Runnable)</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li class="circle">sig.engine.<a href="Edge.html" title="class in sig.engine"><span class="typeNameLink">Edge</span></a></li> |
||||
<li class="circle">sig.engine.<a href="Key.html" title="class in sig.engine"><span class="typeNameLink">Key</span></a></li> |
||||
<li class="circle">sig.engine.<a href="Mouse.html" title="class in sig.engine"><span class="typeNameLink">Mouse</span></a></li> |
||||
<li class="circle">sig.engine.<a href="Point.html" title="class in sig.engine"><span class="typeNameLink">Point</span></a><T></li> |
||||
<li class="circle">sig.engine.<a href="Rectangle.html" title="class in sig.engine"><span class="typeNameLink">Rectangle</span></a></li> |
||||
<li class="circle">sig.engine.<a href="Sprite.html" title="class in sig.engine"><span class="typeNameLink">Sprite</span></a> |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="AnimatedSprite.html" title="class in sig.engine"><span class="typeNameLink">AnimatedSprite</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li class="circle">sig.engine.<a href="String.html" title="class in sig.engine"><span class="typeNameLink">String</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
<section> |
||||
<h2 title="Enum Hierarchy">Enum Hierarchy</h2> |
||||
<ul> |
||||
<li class="circle">java.lang.Object |
||||
<ul> |
||||
<li class="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) |
||||
<ul> |
||||
<li class="circle">sig.engine.<a href="Font.html" title="enum in sig.engine"><span class="typeNameLink">Font</span></a></li> |
||||
<li class="circle">sig.engine.<a href="MouseScrollValue.html" title="enum in sig.engine"><span class="typeNameLink">MouseScrollValue</span></a></li> |
||||
<li class="circle">sig.engine.<a href="PolygonStructure.html" title="enum in sig.engine"><span class="typeNameLink">PolygonStructure</span></a></li> |
||||
<li class="circle">sig.engine.<a href="Transform.html" title="enum in sig.engine"><span class="typeNameLink">Transform</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../index-all.html">Index</a></li> |
||||
<li><a href="../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,165 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>sig</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../script.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="sig"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 title="Package" class="title">Package sig</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="typeSummary"> |
||||
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Class</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<th class="colFirst" scope="row"><a href="JavaProjectTemplate.html" title="class in sig">JavaProjectTemplate</a></th> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,162 @@ |
||||
<!DOCTYPE HTML> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (11.0.17) on Mon Nov 28 20:13:40 CST 2022 --> |
||||
<title>sig Class Hierarchy</title> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<meta name="dc.created" content="2022-11-28"> |
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style"> |
||||
<link rel="stylesheet" type="text/css" href="../jquery-ui.overrides.css" title="Style"> |
||||
<script type="text/javascript" src="../script.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip/dist/jszip.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils.min.js"></script> |
||||
<!--[if IE]> |
||||
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> |
||||
<![endif]--> |
||||
<script type="text/javascript" src="../jquery/jquery-3.6.0.min.js"></script> |
||||
<script type="text/javascript" src="../jquery/jquery-ui.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="sig Class Hierarchy"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var pathtoroot = "../"; |
||||
var useModuleDirectories = true; |
||||
loadScripts(document, 'script');</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<header role="banner"> |
||||
<nav role="navigation"> |
||||
<div class="fixedNav"> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a id="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<ul class="navListSearch"> |
||||
<li><label for="search">SEARCH:</label> |
||||
<input type="text" id="search" value="search" disabled="disabled"> |
||||
<input type="reset" id="reset" value="reset" disabled="disabled"> |
||||
</li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
</div> |
||||
<div class="navPadding"> </div> |
||||
<script type="text/javascript"><!-- |
||||
$('.navPadding').css('padding-top', $('.fixedNav').css("height")); |
||||
//--> |
||||
</script> |
||||
</nav> |
||||
</header> |
||||
<main role="main"> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For Package sig</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="../overview-tree.html">All Packages</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<section> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li class="circle">java.lang.Object |
||||
<ul> |
||||
<li class="circle">sig.<a href="JavaProjectTemplate.html" title="class in sig"><span class="typeNameLink">JavaProjectTemplate</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</div> |
||||
</main> |
||||
<footer role="contentinfo"> |
||||
<nav role="navigation"> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a id="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a id="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../index.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../index-all.html">Index</a></li> |
||||
<li><a href="../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../allclasses.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
</div> |
||||
<a id="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
</nav> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,910 @@ |
||||
/* |
||||
* Javadoc style sheet |
||||
*/ |
||||
|
||||
@import url('resources/fonts/dejavu.css'); |
||||
|
||||
/* |
||||
* Styles for individual HTML elements. |
||||
* |
||||
* These are styles that are specific to individual HTML elements. Changing them affects the style of a particular |
||||
* HTML element throughout the page. |
||||
*/ |
||||
|
||||
body { |
||||
background-color:#ffffff; |
||||
color:#353833; |
||||
font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; |
||||
font-size:14px; |
||||
margin:0; |
||||
padding:0; |
||||
height:100%; |
||||
width:100%; |
||||
} |
||||
iframe { |
||||
margin:0; |
||||
padding:0; |
||||
height:100%; |
||||
width:100%; |
||||
overflow-y:scroll; |
||||
border:none; |
||||
} |
||||
a:link, a:visited { |
||||
text-decoration:none; |
||||
color:#4A6782; |
||||
} |
||||
a[href]:hover, a[href]:focus { |
||||
text-decoration:none; |
||||
color:#bb7a2a; |
||||
} |
||||
a[name] { |
||||
color:#353833; |
||||
} |
||||
a[name]:before, a[name]:target, a[id]:before, a[id]:target { |
||||
content:""; |
||||
display:inline-block; |
||||
position:relative; |
||||
padding-top:129px; |
||||
margin-top:-129px; |
||||
} |
||||
pre { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
} |
||||
h1 { |
||||
font-size:20px; |
||||
} |
||||
h2 { |
||||
font-size:18px; |
||||
} |
||||
h3 { |
||||
font-size:16px; |
||||
font-style:italic; |
||||
} |
||||
h4 { |
||||
font-size:13px; |
||||
} |
||||
h5 { |
||||
font-size:12px; |
||||
} |
||||
h6 { |
||||
font-size:11px; |
||||
} |
||||
ul { |
||||
list-style-type:disc; |
||||
} |
||||
code, tt { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
padding-top:4px; |
||||
margin-top:8px; |
||||
line-height:1.4em; |
||||
} |
||||
dt code { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
padding-top:4px; |
||||
} |
||||
table tr td dt code { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
vertical-align:top; |
||||
padding-top:4px; |
||||
} |
||||
sup { |
||||
font-size:8px; |
||||
} |
||||
|
||||
/* |
||||
* Styles for HTML generated by javadoc. |
||||
* |
||||
* These are style classes that are used by the standard doclet to generate HTML documentation. |
||||
*/ |
||||
|
||||
/* |
||||
* Styles for document title and copyright. |
||||
*/ |
||||
.clear { |
||||
clear:both; |
||||
height:0px; |
||||
overflow:hidden; |
||||
} |
||||
.aboutLanguage { |
||||
float:right; |
||||
padding:0px 21px; |
||||
font-size:11px; |
||||
z-index:200; |
||||
margin-top:-9px; |
||||
} |
||||
.legalCopy { |
||||
margin-left:.5em; |
||||
} |
||||
.bar a, .bar a:link, .bar a:visited, .bar a:active { |
||||
color:#FFFFFF; |
||||
text-decoration:none; |
||||
} |
||||
.bar a:hover, .bar a:focus { |
||||
color:#bb7a2a; |
||||
} |
||||
.tab { |
||||
background-color:#0066FF; |
||||
color:#ffffff; |
||||
padding:8px; |
||||
width:5em; |
||||
font-weight:bold; |
||||
} |
||||
/* |
||||
* Styles for navigation bar. |
||||
*/ |
||||
.bar { |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
padding:.8em .5em .4em .8em; |
||||
height:auto;/*height:1.8em;*/ |
||||
font-size:11px; |
||||
margin:0; |
||||
} |
||||
.navPadding { |
||||
padding-top: 107px; |
||||
} |
||||
.fixedNav { |
||||
position:fixed; |
||||
width:100%; |
||||
z-index:999; |
||||
background-color:#ffffff; |
||||
} |
||||
.topNav { |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
float:left; |
||||
padding:0; |
||||
width:100%; |
||||
clear:right; |
||||
height:2.8em; |
||||
padding-top:10px; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.bottomNav { |
||||
margin-top:10px; |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
float:left; |
||||
padding:0; |
||||
width:100%; |
||||
clear:right; |
||||
height:2.8em; |
||||
padding-top:10px; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.subNav { |
||||
background-color:#dee3e9; |
||||
float:left; |
||||
width:100%; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.subNav div { |
||||
clear:left; |
||||
float:left; |
||||
padding:0 0 5px 6px; |
||||
text-transform:uppercase; |
||||
} |
||||
ul.navList, ul.subNavList { |
||||
float:left; |
||||
margin:0 25px 0 0; |
||||
padding:0; |
||||
} |
||||
ul.navList li{ |
||||
list-style:none; |
||||
float:left; |
||||
padding: 5px 6px; |
||||
text-transform:uppercase; |
||||
} |
||||
ul.navListSearch { |
||||
float:right; |
||||
margin:0 0 0 0; |
||||
padding:0; |
||||
} |
||||
ul.navListSearch li { |
||||
list-style:none; |
||||
float:right; |
||||
padding: 5px 6px; |
||||
text-transform:uppercase; |
||||
} |
||||
ul.navListSearch li label { |
||||
position:relative; |
||||
right:-16px; |
||||
} |
||||
ul.subNavList li { |
||||
list-style:none; |
||||
float:left; |
||||
} |
||||
.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { |
||||
color:#FFFFFF; |
||||
text-decoration:none; |
||||
text-transform:uppercase; |
||||
} |
||||
.topNav a:hover, .bottomNav a:hover { |
||||
text-decoration:none; |
||||
color:#bb7a2a; |
||||
text-transform:uppercase; |
||||
} |
||||
.navBarCell1Rev { |
||||
background-color:#F8981D; |
||||
color:#253441; |
||||
margin: auto 5px; |
||||
} |
||||
.skipNav { |
||||
position:absolute; |
||||
top:auto; |
||||
left:-9999px; |
||||
overflow:hidden; |
||||
} |
||||
/* |
||||
* Styles for page header and footer. |
||||
*/ |
||||
.header, .footer { |
||||
clear:both; |
||||
margin:0 20px; |
||||
padding:5px 0 0 0; |
||||
} |
||||
.indexNav { |
||||
position:relative; |
||||
font-size:12px; |
||||
background-color:#dee3e9; |
||||
} |
||||
.indexNav ul { |
||||
margin-top:0; |
||||
padding:5px; |
||||
} |
||||
.indexNav ul li { |
||||
display:inline; |
||||
list-style-type:none; |
||||
padding-right:10px; |
||||
text-transform:uppercase; |
||||
} |
||||
.indexNav h1 { |
||||
font-size:13px; |
||||
} |
||||
.title { |
||||
color:#2c4557; |
||||
margin:10px 0; |
||||
} |
||||
.subTitle { |
||||
margin:5px 0 0 0; |
||||
} |
||||
.header ul { |
||||
margin:0 0 15px 0; |
||||
padding:0; |
||||
} |
||||
.footer ul { |
||||
margin:20px 0 5px 0; |
||||
} |
||||
.header ul li, .footer ul li { |
||||
list-style:none; |
||||
font-size:13px; |
||||
} |
||||
/* |
||||
* Styles for headings. |
||||
*/ |
||||
div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { |
||||
background-color:#dee3e9; |
||||
border:1px solid #d0d9e0; |
||||
margin:0 0 6px -8px; |
||||
padding:7px 5px; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList li.blockList h3 { |
||||
background-color:#dee3e9; |
||||
border:1px solid #d0d9e0; |
||||
margin:0 0 6px -8px; |
||||
padding:7px 5px; |
||||
} |
||||
ul.blockList ul.blockList li.blockList h3 { |
||||
padding:0; |
||||
margin:15px 0; |
||||
} |
||||
ul.blockList li.blockList h2 { |
||||
padding:0px 0 20px 0; |
||||
} |
||||
/* |
||||
* Styles for page layout containers. |
||||
*/ |
||||
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer, |
||||
.allClassesContainer, .allPackagesContainer { |
||||
clear:both; |
||||
padding:10px 20px; |
||||
position:relative; |
||||
} |
||||
.indexContainer { |
||||
margin:10px; |
||||
position:relative; |
||||
font-size:12px; |
||||
} |
||||
.indexContainer h2 { |
||||
font-size:13px; |
||||
padding:0 0 3px 0; |
||||
} |
||||
.indexContainer ul { |
||||
margin:0; |
||||
padding:0; |
||||
} |
||||
.indexContainer ul li { |
||||
list-style:none; |
||||
padding-top:2px; |
||||
} |
||||
.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { |
||||
font-size:12px; |
||||
font-weight:bold; |
||||
margin:10px 0 0 0; |
||||
color:#4E4E4E; |
||||
} |
||||
.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { |
||||
margin:5px 0 10px 0px; |
||||
font-size:14px; |
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; |
||||
} |
||||
.serializedFormContainer dl.nameValue dt { |
||||
margin-left:1px; |
||||
font-size:1.1em; |
||||
display:inline; |
||||
font-weight:bold; |
||||
} |
||||
.serializedFormContainer dl.nameValue dd { |
||||
margin:0 0 0 1px; |
||||
font-size:1.1em; |
||||
display:inline; |
||||
} |
||||
/* |
||||
* Styles for lists. |
||||
*/ |
||||
li.circle { |
||||
list-style:circle; |
||||
} |
||||
ul.horizontal li { |
||||
display:inline; |
||||
font-size:0.9em; |
||||
} |
||||
ul.inheritance { |
||||
margin:0; |
||||
padding:0; |
||||
} |
||||
ul.inheritance li { |
||||
display:inline; |
||||
list-style:none; |
||||
} |
||||
ul.inheritance li ul.inheritance { |
||||
margin-left:15px; |
||||
padding-left:15px; |
||||
padding-top:1px; |
||||
} |
||||
ul.blockList, ul.blockListLast { |
||||
margin:10px 0 10px 0; |
||||
padding:0; |
||||
} |
||||
ul.blockList li.blockList, ul.blockListLast li.blockList { |
||||
list-style:none; |
||||
margin-bottom:15px; |
||||
line-height:1.4; |
||||
} |
||||
ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { |
||||
padding:0px 20px 5px 10px; |
||||
border:1px solid #ededed; |
||||
background-color:#f8f8f8; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { |
||||
padding:0 0 5px 8px; |
||||
background-color:#ffffff; |
||||
border:none; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { |
||||
margin-left:0; |
||||
padding-left:0; |
||||
padding-bottom:15px; |
||||
border:none; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { |
||||
list-style:none; |
||||
border-bottom:none; |
||||
padding-bottom:0; |
||||
} |
||||
table tr td dl, table tr td dl dt, table tr td dl dd { |
||||
margin-top:0; |
||||
margin-bottom:1px; |
||||
} |
||||
/* |
||||
* Styles for tables. |
||||
*/ |
||||
.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary, |
||||
.requiresSummary, .packagesSummary, .providesSummary, .usesSummary { |
||||
width:100%; |
||||
border-spacing:0; |
||||
border-left:1px solid #EEE; |
||||
border-right:1px solid #EEE; |
||||
border-bottom:1px solid #EEE; |
||||
} |
||||
.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary { |
||||
padding:0px; |
||||
} |
||||
.overviewSummary caption, .memberSummary caption, .typeSummary caption, |
||||
.useSummary caption, .constantsSummary caption, .deprecatedSummary caption, |
||||
.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption { |
||||
position:relative; |
||||
text-align:left; |
||||
background-repeat:no-repeat; |
||||
color:#253441; |
||||
font-weight:bold; |
||||
clear:none; |
||||
overflow:hidden; |
||||
padding:0px; |
||||
padding-top:10px; |
||||
padding-left:1px; |
||||
margin:0px; |
||||
white-space:pre; |
||||
} |
||||
.constantsSummary caption a:link, .constantsSummary caption a:visited, |
||||
.useSummary caption a:link, .useSummary caption a:visited { |
||||
color:#1f389c; |
||||
} |
||||
.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, |
||||
.deprecatedSummary caption a:link, |
||||
.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link, |
||||
.usesSummary caption a:link, |
||||
.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, |
||||
.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, |
||||
.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover, |
||||
.usesSummary caption a:hover, |
||||
.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, |
||||
.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, |
||||
.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active, |
||||
.usesSummary caption a:active, |
||||
.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, |
||||
.deprecatedSummary caption a:visited, |
||||
.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited, |
||||
.usesSummary caption a:visited { |
||||
color:#FFFFFF; |
||||
} |
||||
.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, |
||||
.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span, |
||||
.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span, |
||||
.usesSummary caption span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
padding-bottom:7px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
border: none; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span, |
||||
.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
margin-right:3px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span, |
||||
.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
margin-right:3px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#4D7A97; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab, |
||||
.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab, |
||||
.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab, |
||||
.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab { |
||||
padding-top:0px; |
||||
padding-left:0px; |
||||
padding-right:0px; |
||||
background-image:none; |
||||
float:none; |
||||
display:inline; |
||||
} |
||||
.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, |
||||
.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd, |
||||
.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
position:relative; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
} |
||||
.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd, |
||||
.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
margin-right:3px; |
||||
position:relative; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
} |
||||
.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd, |
||||
.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
margin-right:3px; |
||||
position:relative; |
||||
background-color:#4D7A97; |
||||
float:left; |
||||
} |
||||
.rowColor th, .altColor th { |
||||
font-weight:normal; |
||||
} |
||||
.overviewSummary td, .memberSummary td, .typeSummary td, |
||||
.useSummary td, .constantsSummary td, .deprecatedSummary td, |
||||
.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td { |
||||
text-align:left; |
||||
padding:0px 0px 12px 10px; |
||||
} |
||||
th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th, |
||||
.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td, |
||||
.constantsSummary td { |
||||
vertical-align:top; |
||||
padding-right:0px; |
||||
padding-top:8px; |
||||
padding-bottom:3px; |
||||
} |
||||
th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th, |
||||
.packagesSummary th { |
||||
background:#dee3e9; |
||||
text-align:left; |
||||
padding:8px 3px 3px 7px; |
||||
} |
||||
td.colFirst, th.colFirst { |
||||
font-size:13px; |
||||
} |
||||
td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast { |
||||
font-size:13px; |
||||
} |
||||
.constantsSummary th, .packagesSummary th { |
||||
font-size:13px; |
||||
} |
||||
.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst, |
||||
.providesSummary td.colLast { |
||||
white-space:normal; |
||||
font-size:13px; |
||||
} |
||||
.overviewSummary td.colFirst, .overviewSummary th.colFirst, |
||||
.requiresSummary td.colFirst, .requiresSummary th.colFirst, |
||||
.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th, |
||||
.usesSummary td.colFirst, .usesSummary th.colFirst, |
||||
.providesSummary td.colFirst, .providesSummary th.colFirst, |
||||
.memberSummary td.colFirst, .memberSummary th.colFirst, |
||||
.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName, |
||||
.typeSummary td.colFirst, .typeSummary th.colFirst { |
||||
vertical-align:top; |
||||
} |
||||
.packagesSummary th.colLast, .packagesSummary td.colLast { |
||||
white-space:normal; |
||||
} |
||||
td.colFirst a:link, td.colFirst a:visited, |
||||
td.colSecond a:link, td.colSecond a:visited, |
||||
th.colFirst a:link, th.colFirst a:visited, |
||||
th.colSecond a:link, th.colSecond a:visited, |
||||
th.colConstructorName a:link, th.colConstructorName a:visited, |
||||
th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, |
||||
.constantValuesContainer td a:link, .constantValuesContainer td a:visited, |
||||
.allClassesContainer td a:link, .allClassesContainer td a:visited, |
||||
.allPackagesContainer td a:link, .allPackagesContainer td a:visited { |
||||
font-weight:bold; |
||||
} |
||||
.tableSubHeadingColor { |
||||
background-color:#EEEEFF; |
||||
} |
||||
.altColor, .altColor th { |
||||
background-color:#FFFFFF; |
||||
} |
||||
.rowColor, .rowColor th { |
||||
background-color:#EEEEEF; |
||||
} |
||||
/* |
||||
* Styles for contents. |
||||
*/ |
||||
.description pre { |
||||
margin-top:0; |
||||
} |
||||
.deprecatedContent { |
||||
margin:0; |
||||
padding:10px 0; |
||||
} |
||||
.docSummary { |
||||
padding:0; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList li.blockList h3 { |
||||
font-style:normal; |
||||
} |
||||
div.block { |
||||
font-size:14px; |
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; |
||||
} |
||||
td.colLast div { |
||||
padding-top:0px; |
||||
} |
||||
td.colLast a { |
||||
padding-bottom:3px; |
||||
} |
||||
/* |
||||
* Styles for formatting effect. |
||||
*/ |
||||
.sourceLineNo { |
||||
color:green; |
||||
padding:0 30px 0 0; |
||||
} |
||||
h1.hidden { |
||||
visibility:hidden; |
||||
overflow:hidden; |
||||
font-size:10px; |
||||
} |
||||
.block { |
||||
display:block; |
||||
margin:3px 10px 2px 0px; |
||||
color:#474747; |
||||
} |
||||
.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink, |
||||
.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType, |
||||
.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, |
||||
.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink { |
||||
font-weight:bold; |
||||
} |
||||
.deprecationComment, .emphasizedPhrase, .interfaceName { |
||||
font-style:italic; |
||||
} |
||||
.deprecationBlock { |
||||
font-size:14px; |
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; |
||||
border-style:solid; |
||||
border-width:thin; |
||||
border-radius:10px; |
||||
padding:10px; |
||||
margin-bottom:10px; |
||||
margin-right:10px; |
||||
display:inline-block; |
||||
} |
||||
div.block div.deprecationComment, div.block div.block span.emphasizedPhrase, |
||||
div.block div.block span.interfaceName { |
||||
font-style:normal; |
||||
} |
||||
div.contentContainer ul.blockList li.blockList h2 { |
||||
padding-bottom:0px; |
||||
} |
||||
/* |
||||
* Styles for IFRAME. |
||||
*/ |
||||
.mainContainer { |
||||
margin:0 auto; |
||||
padding:0; |
||||
height:100%; |
||||
width:100%; |
||||
position:fixed; |
||||
top:0; |
||||
left:0; |
||||
} |
||||
.leftContainer { |
||||
height:100%; |
||||
position:fixed; |
||||
width:320px; |
||||
} |
||||
.leftTop { |
||||
position:relative; |
||||
float:left; |
||||
width:315px; |
||||
top:0; |
||||
left:0; |
||||
height:30%; |
||||
border-right:6px solid #ccc; |
||||
border-bottom:6px solid #ccc; |
||||
} |
||||
.leftBottom { |
||||
position:relative; |
||||
float:left; |
||||
width:315px; |
||||
bottom:0; |
||||
left:0; |
||||
height:70%; |
||||
border-right:6px solid #ccc; |
||||
border-top:1px solid #000; |
||||
} |
||||
.rightContainer { |
||||
position:absolute; |
||||
left:320px; |
||||
top:0; |
||||
bottom:0; |
||||
height:100%; |
||||
right:0; |
||||
border-left:1px solid #000; |
||||
} |
||||
.rightIframe { |
||||
margin:0; |
||||
padding:0; |
||||
height:100%; |
||||
right:30px; |
||||
width:100%; |
||||
overflow:visible; |
||||
margin-bottom:30px; |
||||
} |
||||
/* |
||||
* Styles specific to HTML5 elements. |
||||
*/ |
||||
main, nav, header, footer, section { |
||||
display:block; |
||||
} |
||||
/* |
||||
* Styles for javadoc search. |
||||
*/ |
||||
.ui-autocomplete-category { |
||||
font-weight:bold; |
||||
font-size:15px; |
||||
padding:7px 0 7px 3px; |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
} |
||||
.resultItem { |
||||
font-size:13px; |
||||
} |
||||
.ui-autocomplete { |
||||
max-height:85%; |
||||
max-width:65%; |
||||
overflow-y:scroll; |
||||
overflow-x:scroll; |
||||
white-space:nowrap; |
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); |
||||
} |
||||
ul.ui-autocomplete { |
||||
position:fixed; |
||||
z-index:999999; |
||||
background-color: #FFFFFF; |
||||
} |
||||
ul.ui-autocomplete li { |
||||
float:left; |
||||
clear:both; |
||||
width:100%; |
||||
} |
||||
.resultHighlight { |
||||
font-weight:bold; |
||||
} |
||||
.ui-autocomplete .result-item { |
||||
font-size: inherit; |
||||
} |
||||
#search { |
||||
background-image:url('resources/glass.png'); |
||||
background-size:13px; |
||||
background-repeat:no-repeat; |
||||
background-position:2px 3px; |
||||
padding-left:20px; |
||||
position:relative; |
||||
right:-18px; |
||||
} |
||||
#reset { |
||||
background-color: rgb(255,255,255); |
||||
background-image:url('resources/x.png'); |
||||
background-position:center; |
||||
background-repeat:no-repeat; |
||||
background-size:12px; |
||||
border:0 none; |
||||
width:16px; |
||||
height:17px; |
||||
position:relative; |
||||
left:-4px; |
||||
top:-4px; |
||||
font-size:0px; |
||||
} |
||||
.watermark { |
||||
color:#545454; |
||||
} |
||||
.searchTagDescResult { |
||||
font-style:italic; |
||||
font-size:11px; |
||||
} |
||||
.searchTagHolderResult { |
||||
font-style:italic; |
||||
font-size:12px; |
||||
} |
||||
.searchTagResult:before, .searchTagResult:target { |
||||
color:red; |
||||
} |
||||
.moduleGraph span { |
||||
display:none; |
||||
position:absolute; |
||||
} |
||||
.moduleGraph:hover span { |
||||
display:block; |
||||
margin: -100px 0 0 100px; |
||||
z-index: 1; |
||||
} |
||||
.methodSignature { |
||||
white-space:normal; |
||||
} |
||||
|
||||
/* |
||||
* Styles for user-provided tables. |
||||
* |
||||
* borderless: |
||||
* No borders, vertical margins, styled caption. |
||||
* This style is provided for use with existing doc comments. |
||||
* In general, borderless tables should not be used for layout purposes. |
||||
* |
||||
* plain: |
||||
* Plain borders around table and cells, vertical margins, styled caption. |
||||
* Best for small tables or for complex tables for tables with cells that span |
||||
* rows and columns, when the "striped" style does not work well. |
||||
* |
||||
* striped: |
||||
* Borders around the table and vertical borders between cells, striped rows, |
||||
* vertical margins, styled caption. |
||||
* Best for tables that have a header row, and a body containing a series of simple rows. |
||||
*/ |
||||
|
||||
table.borderless, |
||||
table.plain, |
||||
table.striped { |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
table.borderless > caption, |
||||
table.plain > caption, |
||||
table.striped > caption { |
||||
font-weight: bold; |
||||
font-size: smaller; |
||||
} |
||||
table.borderless th, table.borderless td, |
||||
table.plain th, table.plain td, |
||||
table.striped th, table.striped td { |
||||
padding: 2px 5px; |
||||
} |
||||
table.borderless, |
||||
table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, |
||||
table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { |
||||
border: none; |
||||
} |
||||
table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { |
||||
background-color: transparent; |
||||
} |
||||
table.plain { |
||||
border-collapse: collapse; |
||||
border: 1px solid black; |
||||
} |
||||
table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { |
||||
background-color: transparent; |
||||
} |
||||
table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, |
||||
table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { |
||||
border: 1px solid black; |
||||
} |
||||
table.striped { |
||||
border-collapse: collapse; |
||||
border: 1px solid black; |
||||
} |
||||
table.striped > thead { |
||||
background-color: #E3E3E3; |
||||
} |
||||
table.striped > thead > tr > th, table.striped > thead > tr > td { |
||||
border: 1px solid black; |
||||
} |
||||
table.striped > tbody > tr:nth-child(even) { |
||||
background-color: #EEE |
||||
} |
||||
table.striped > tbody > tr:nth-child(odd) { |
||||
background-color: #FFF |
||||
} |
||||
table.striped > tbody > tr > th, table.striped > tbody > tr > td { |
||||
border-left: 1px solid black; |
||||
border-right: 1px solid black; |
||||
} |
||||
table.striped > tbody > tr > th { |
||||
font-weight: normal; |
||||
} |
@ -0,0 +1 @@ |
||||
typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"sig.engine","l":"AnimatedSprite"},{"p":"sig.engine","l":"Color"},{"p":"sig.engine","l":"Edge"},{"p":"sig.engine","l":"Font"},{"p":"sig","l":"JavaProjectTemplate"},{"p":"sig.engine","l":"Key"},{"p":"sig.engine","l":"Mouse"},{"p":"sig.engine","l":"MouseScrollValue"},{"p":"sig.engine","l":"Panel"},{"p":"sig.engine","l":"Point"},{"p":"sig.engine","l":"PolygonStructure"},{"p":"sig.engine","l":"Rectangle"},{"p":"sig.engine","l":"Sprite"},{"p":"sig.engine","l":"String"},{"p":"sig.engine","l":"Transform"}] |
@ -0,0 +1,3 @@ |
||||
cd bin |
||||
java -jar JavaProjectTemplate.jar |
||||
cd .. |
@ -0,0 +1,16 @@ |
||||
#!/usr/bin/bash |
||||
export AUTO_UPDATE=true |
||||
|
||||
source utils/define.sh |
||||
|
||||
define PROJECT_NAME "JavaProjectTemplate" |
||||
define PROJECT_DIR "src/sig" |
||||
define MAIN_CLASS "sig.${PROJECT_NAME}" |
||||
define OUT_DIR "bin" |
||||
define LIBRARY_PATH "../lib" |
||||
define CLASS_PATH "${PROJECT_DIR}/..:lib/bin" |
||||
define CLASS_PATH_WINDOWS "${PROJECT_DIR}/..;lib/bin" |
||||
define CUSTOM_PARAMS "" |
||||
define LANGUAGE "Java" |
||||
|
||||
source utils/main.sh |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,114 @@ |
||||
package sig; |
||||
|
||||
import sig.engine.AnimatedSprite; |
||||
import sig.engine.Color; |
||||
import sig.engine.Key; |
||||
import sig.engine.Panel; |
||||
import sig.engine.Sprite; |
||||
|
||||
import java.awt.event.KeyEvent; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
class Player{ |
||||
AnimatedSprite spr=new AnimatedSprite("player.png",32,32); |
||||
double x=200,y=200; |
||||
|
||||
double animationFrame=0; |
||||
double animationSpd=2; //Animation Speed will be 2 frames per second
|
||||
int TAIL_SPACING=32; |
||||
|
||||
List<Tail> tail = new ArrayList<Tail>(); |
||||
List<PositionMarker> path = new ArrayList<PositionMarker>(); |
||||
} |
||||
|
||||
class Tail{ |
||||
double x,y; |
||||
Tail(List<PositionMarker> tailTrail,int TAIL_SPACING){ |
||||
for (int i=0;i<TAIL_SPACING;i++) { |
||||
tailTrail.add(new PositionMarker()); |
||||
} |
||||
} |
||||
} |
||||
|
||||
class PositionMarker{ |
||||
double x,y; |
||||
} |
||||
|
||||
public class JavaProjectTemplate { |
||||
public static final String PROGRAM_NAME="Sig's Java Project Template"; |
||||
public static int WINDOW_WIDTH=1280; |
||||
public static int WINDOW_HEIGHT=720; |
||||
public static Panel game; |
||||
|
||||
Player pl = new Player(); |
||||
Sprite bookSpr = new Sprite("book.png"); |
||||
|
||||
JavaProjectTemplate(){ |
||||
//Initialize your game here.
|
||||
} |
||||
|
||||
void GeneratePath(){ |
||||
double prev_tail_x=pl.x; |
||||
double prev_tail_y=pl.y; |
||||
for (int i=0;i<pl.path.size();i++) { |
||||
PositionMarker t = pl.path.get(i); |
||||
double prevpos_x=t.x; |
||||
double prevpos_y=t.y; |
||||
t.x=prev_tail_x; |
||||
t.y=prev_tail_y; |
||||
prev_tail_x=prevpos_x; |
||||
prev_tail_y=prevpos_y; |
||||
} |
||||
for (int i=0;i<pl.tail.size();i++) { |
||||
Tail t = pl.tail.get(i); |
||||
t.x=pl.path.get(i*pl.TAIL_SPACING).x; |
||||
t.y=pl.path.get(i*pl.TAIL_SPACING).y; |
||||
} |
||||
} |
||||
|
||||
public void updateGame(double fElapsedTime) { |
||||
//Put game update logic in here.
|
||||
|
||||
//Player sprite will animate.
|
||||
pl.animationFrame+=pl.animationSpd*fElapsedTime; |
||||
|
||||
//Allow player movement using WASD keys.
|
||||
if (Key.isHeld(KeyEvent.VK_A)) { |
||||
pl.x-=200*fElapsedTime; |
||||
} |
||||
if (Key.isHeld(KeyEvent.VK_D)) { |
||||
pl.x+=200*fElapsedTime; |
||||
} |
||||
if (Key.isHeld(KeyEvent.VK_W)) { |
||||
pl.y-=200*fElapsedTime; |
||||
} |
||||
if (Key.isHeld(KeyEvent.VK_S)) { |
||||
pl.y+=200*fElapsedTime; |
||||
} |
||||
|
||||
if (Key.isPressed(KeyEvent.VK_SPACE)) { |
||||
pl.tail.add(new Tail(pl.path,pl.TAIL_SPACING)); |
||||
} |
||||
GeneratePath(); |
||||
|
||||
} |
||||
|
||||
public void drawGame() { |
||||
//Put rendering logic in here.
|
||||
|
||||
game.Clear(Color.BRIGHT_BLUE); //Clear the screen so all pixels from the previous frame are removed.
|
||||
game.Fill_Rect(pl.x, pl.y, 64, 64, Color.BLACK); |
||||
|
||||
for (int i=0;i<pl.tail.size();i++) { |
||||
Tail t = pl.tail.get(i); |
||||
game.FillCircle(t.x+22, t.y+22, 10, Color.BLUE); |
||||
game.Draw_Circle((int)t.x+22, (int)t.y+22, 10, Color.BLACK); |
||||
} |
||||
} |
||||
|
||||
public static void main(String[] args) { |
||||
JavaProjectTemplate gameInstance=new JavaProjectTemplate(); |
||||
Panel.InitializeEngine(gameInstance); |
||||
} |
||||
} |
@ -0,0 +1,46 @@ |
||||
package sig.engine; |
||||
|
||||
import java.io.File; |
||||
|
||||
public class AnimatedSprite extends Sprite{ |
||||
int originalWidth; |
||||
int originalHeight; |
||||
int frames; |
||||
Rectangle[] frames_to_Rectangle; |
||||
|
||||
public AnimatedSprite(java.lang.String filename, int width, int height){ |
||||
this(new File(Sprite.SPRITES_FOLDER.getAbsolutePath(),filename),width,height); |
||||
} |
||||
|
||||
AnimatedSprite(File filename, int width, int height){ |
||||
super(filename); |
||||
this.originalWidth=this.width; |
||||
this.originalHeight=this.height; |
||||
this.width = width; |
||||
this.height = height; |
||||
frames = (originalWidth/width)*(originalHeight/height); |
||||
frames_to_Rectangle = new Rectangle[frames]; |
||||
for(int i=0;i<frames;i++){ |
||||
int x_tile = i%(originalWidth/width); |
||||
int y_tile = i/(originalWidth/width); |
||||
frames_to_Rectangle[i] = new Rectangle(x_tile*width, y_tile*height, width, height); |
||||
} |
||||
} |
||||
public Rectangle getFrame(int index){ |
||||
return frames_to_Rectangle[index%frames]; |
||||
} |
||||
public int getFrame_count(){ |
||||
return frames; |
||||
} |
||||
|
||||
@Override |
||||
public int getCanvasHeight() { |
||||
return originalHeight; |
||||
} |
||||
|
||||
@Override |
||||
public int getCanvasWidth() { |
||||
return originalWidth; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,60 @@ |
||||
package sig.engine; |
||||
|
||||
public class Color { |
||||
int r,g,b,a; |
||||
|
||||
final static public Color BLACK = new Color(0,0,0); |
||||
final static public Color RED = new Color(204,0,0); |
||||
final static public Color GREEN = new Color(78,154,6); |
||||
final static public Color YELLOW = new Color(196,160,0); |
||||
final static public Color BLUE = new Color(114,159,207); |
||||
final static public Color MAGENTA = new Color(117,80,123); |
||||
final static public Color CYAN = new Color(6,152,154); |
||||
final static public Color WHITE = new Color(211,215,207); |
||||
final static public Color BRIGHT_BLACK = new Color(85,87,83); |
||||
final static public Color BRIGHT_RED = new Color(239,41,41); |
||||
final static public Color BRIGHT_GREEN = new Color(138,226,52); |
||||
final static public Color BRIGHT_YELLOW = new Color(252,233,79); |
||||
final static public Color BRIGHT_BLUE = new Color(50,175,255); |
||||
final static public Color BRIGHT_MAGENTA = new Color(173,127,168); |
||||
final static public Color BRIGHT_CYAN = new Color(52,226,226); |
||||
final static public Color BRIGHT_WHITE = new Color(255,255,255); |
||||
|
||||
public Color(int r, int g, int b) { |
||||
this(r,g,b,255); |
||||
} |
||||
public Color(float r, float g, float b) { |
||||
this((int)(r*255),(int)(g*255),(int)(b*255),255); |
||||
} |
||||
public Color(float r, float g, float b,float a) { |
||||
this((int)(r*255),(int)(g*255),(int)(b*255),(int)(a*255)); |
||||
} |
||||
|
||||
public Color(int r, int g, int b,int a) { |
||||
super(); |
||||
this.r = r; |
||||
this.g = g; |
||||
this.b = b; |
||||
this.a = a; |
||||
} |
||||
|
||||
public Color(int rgb) { |
||||
this((rgb>>>16)&0xff,(rgb>>>8)&0xff,rgb&0xff,(rgb>>>24)&0xff); |
||||
} |
||||
|
||||
public int getColor() { |
||||
return (a<<24)+(r<<16)+(g<<8)+b; |
||||
} |
||||
|
||||
@Override |
||||
public java.lang.String toString() { |
||||
return "Color [r=" + r + ", g=" + g + ", b=" + b + ", a=" + a + "]"; |
||||
} |
||||
|
||||
@Override |
||||
protected Color clone() throws CloneNotSupportedException { |
||||
return new Color(r,g,b,a); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,33 @@ |
||||
package sig.engine; |
||||
|
||||
public class Edge { |
||||
Point a,b; |
||||
int min_y; |
||||
int max_y; |
||||
int min_x; |
||||
int max_x; |
||||
double x_of_min_y; |
||||
double inverse_slope; |
||||
public Edge(Point<Integer> a, Point<Integer> b) { |
||||
super(); |
||||
this.a = a; |
||||
this.b = b; |
||||
min_y=Math.min(a.y, b.y); |
||||
max_y=Math.max(a.y, b.y); |
||||
min_x=Math.min(a.x, b.x); |
||||
max_x=Math.max(a.x, b.x); |
||||
if (a.y==min_y) { |
||||
x_of_min_y=a.x; |
||||
} else { |
||||
x_of_min_y=b.x; |
||||
} |
||||
|
||||
inverse_slope=(double)(a.x-b.x)/(a.y-b.y); |
||||
} |
||||
@Override |
||||
public java.lang.String toString() { |
||||
return "Edge [a=" + a + ", b=" + b + ", min_y=" + min_y + ", max_y=" + max_y + ", min_x=" + min_x + ", max_x=" |
||||
+ max_x + ", x_of_min_y=" + x_of_min_y + ", inverse_slope=" + inverse_slope + "]"; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,47 @@ |
||||
package sig.engine; |
||||
|
||||
public enum Font { |
||||
PROFONT_12((byte)7,(byte)14,Sprite.PROFONT), |
||||
PROFONT_36((byte)21,(byte)42,Sprite.PROFONT_36), |
||||
; |
||||
|
||||
byte glyphWidth,glyphHeight; |
||||
int glyphCountX,glyphCountY; |
||||
Rectangle[] charBounds; |
||||
Sprite spr; |
||||
|
||||
Font(byte glyphWidth, byte glyphHeight, Sprite spr) { |
||||
this.glyphWidth=glyphWidth; |
||||
this.glyphHeight=glyphHeight; |
||||
this.glyphCountX=spr.width/glyphWidth; |
||||
this.glyphCountY=spr.height/glyphHeight; |
||||
this.charBounds = new Rectangle[256]; |
||||
for (int y=0;y<glyphCountY;y++) { |
||||
for (int x=0;x<glyphCountX;x++) { |
||||
if (y*glyphCountX+x<256) { |
||||
charBounds[y*glyphCountX+x]=new Rectangle(x*glyphWidth,y*glyphHeight,glyphWidth,glyphHeight); |
||||
} |
||||
} |
||||
} |
||||
this.spr=spr; |
||||
} |
||||
|
||||
public Rectangle getCharacterBounds(char c) { |
||||
return charBounds[c]; |
||||
} |
||||
|
||||
public byte getGlyphWidth() { |
||||
return glyphWidth; |
||||
} |
||||
|
||||
public byte getGlyphHeight() { |
||||
return glyphHeight; |
||||
} |
||||
public Rectangle getCharInfo(char c) { |
||||
return charBounds[c]; |
||||
} |
||||
|
||||
public Sprite getSprite() { |
||||
return spr; |
||||
} |
||||
} |
@ -0,0 +1,41 @@ |
||||
package sig.engine; |
||||
|
||||
import java.util.HashMap; |
||||
|
||||
public class Key{ |
||||
|
||||
static HashMap<Integer,Boolean> KEYS = new HashMap<>(); |
||||
static HashMap<Integer,Boolean> KEYS_PRESS = new HashMap<>(); |
||||
static HashMap<Integer,Boolean> KEYS_RELEASE = new HashMap<>(); |
||||
|
||||
protected Key(int keycode) { |
||||
this.keycode=keycode; |
||||
} |
||||
int keycode; |
||||
|
||||
public int getKeyCode() { |
||||
return keycode; |
||||
} |
||||
|
||||
public static void setKeyHeld(int keycode,boolean pressed) { |
||||
KEYS.put(keycode,pressed); |
||||
//System.out.println(KEYS);
|
||||
} |
||||
|
||||
public static boolean isHeld(int keycode) { |
||||
return KEYS.getOrDefault(keycode,false); |
||||
} |
||||
|
||||
public static boolean isPressed(int keycode) { |
||||
return KEYS_PRESS.getOrDefault(keycode,false); |
||||
} |
||||
|
||||
public static boolean isReleased(int keycode) { |
||||
return KEYS_RELEASE.getOrDefault(keycode,false); |
||||
} |
||||
|
||||
public boolean isKeyHeld() { |
||||
return KEYS.getOrDefault(keycode,false); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,27 @@ |
||||
package sig.engine; |
||||
|
||||
import java.util.HashMap; |
||||
|
||||
public class Mouse { |
||||
public static int x; |
||||
public static int y; |
||||
public static HashMap<Integer,Boolean> clickMap=new HashMap<>(); |
||||
public static HashMap<Integer,Boolean> pressMap=new HashMap<>(); |
||||
public static HashMap<Integer,Boolean> releaseMap=new HashMap<>(); |
||||
public static Point<Integer> mousePosition = new Point<Integer>(0,0); |
||||
public static Point<Integer> GetPos(){ |
||||
return new Point<Integer>(x,y); |
||||
} |
||||
//0=Left click, 1=Right click, 2=Middle, 3=Button 4, 4=Button 5
|
||||
public static boolean isHeld(Integer button){ |
||||
return clickMap.getOrDefault(button,false); |
||||
} |
||||
//0=Left click, 1=Right click, 2=Middle, 3=Button 4, 4=Button 5
|
||||
public static boolean isPressed(Integer button){ |
||||
return pressMap.getOrDefault(button,false); |
||||
} |
||||
//0=Left click, 1=Right click, 2=Middle, 3=Button 4, 4=Button 5
|
||||
public static boolean isReleased(Integer button){ |
||||
return releaseMap.getOrDefault(button,false); |
||||
} |
||||
} |
@ -0,0 +1,10 @@ |
||||
package sig.engine; |
||||
|
||||
public enum MouseScrollValue { |
||||
UP(), //-1 is up
|
||||
DOWN() /*1 is down*/; |
||||
|
||||
public static MouseScrollValue getValue(int value) { |
||||
return value==-1?UP:DOWN; |
||||
} |
||||
} |
@ -0,0 +1,45 @@ |
||||
package sig.engine; |
||||
|
||||
public class Point<T>{ |
||||
public T x,y; |
||||
|
||||
public Point(T x, T y) { |
||||
super(); |
||||
this.x = x; |
||||
this.y = y; |
||||
} |
||||
|
||||
public T getX() { |
||||
return x; |
||||
} |
||||
|
||||
public void setX(T x) { |
||||
this.x = x; |
||||
} |
||||
|
||||
public T getY() { |
||||
return y; |
||||
} |
||||
|
||||
public void setY(T y) { |
||||
this.y = y; |
||||
} |
||||
|
||||
public void set(T x,T y) { |
||||
setX(x);setY(y); |
||||
} |
||||
|
||||
public void update(T x,T y) { |
||||
set(x,y); |
||||
} |
||||
|
||||
@Override |
||||
public java.lang.String toString() { |
||||
return "Point(" + x + "," + y + ")"; |
||||
} |
||||
|
||||
@Override |
||||
public Point<T> clone() throws CloneNotSupportedException { |
||||
return new Point<T>(x,y); |
||||
} |
||||
} |
@ -0,0 +1,7 @@ |
||||
package sig.engine; |
||||
|
||||
public enum PolygonStructure{ |
||||
LIST, |
||||
STRIP, |
||||
FAN, |
||||
} |
@ -0,0 +1,61 @@ |
||||
package sig.engine; |
||||
|
||||
public class Rectangle { |
||||
int x,y,w,h; |
||||
|
||||
public Rectangle(int x, int y, int w, int h) { |
||||
this.x = x; |
||||
this.y = y; |
||||
this.w = w; |
||||
this.h = h; |
||||
} |
||||
|
||||
public int getX() { |
||||
return x; |
||||
} |
||||
|
||||
public int getX2() { |
||||
return x+w; |
||||
} |
||||
|
||||
public void setX(int x) { |
||||
this.x = x; |
||||
} |
||||
|
||||
public int getY() { |
||||
return y; |
||||
} |
||||
|
||||
public int getY2() { |
||||
return y+h; |
||||
} |
||||
|
||||
public void setY(int y) { |
||||
this.y = y; |
||||
} |
||||
|
||||
public int getWidth() { |
||||
return w; |
||||
} |
||||
|
||||
public void setWidth(int w) { |
||||
this.w = w; |
||||
} |
||||
|
||||
public int getHeight() { |
||||
return h; |
||||
} |
||||
|
||||
public void setHeight(int h) { |
||||
this.h = h; |
||||
} |
||||
|
||||
@Override |
||||
public java.lang.String toString() { |
||||
return new StringBuilder("Rectangle(x=").append(x).append(",") |
||||
.append("y=").append(y).append(",") |
||||
.append("w=").append(w).append(",") |
||||
.append("h=").append(h).append(")").toString(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,66 @@ |
||||
package sig.engine; |
||||
|
||||
import java.awt.image.BufferedImage; |
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
|
||||
import javax.imageio.ImageIO; |
||||
|
||||
public class Sprite{ |
||||
public final static File SPRITES_FOLDER = new File("..","sprites"); |
||||
public final static Sprite PROFONT = new Sprite("Profont.png"); |
||||
public final static Sprite PROFONT_36 = new Sprite("Profont_36.png"); |
||||
|
||||
BufferedImage img; |
||||
int height; |
||||
int width; |
||||
|
||||
public Sprite(java.lang.String filename){ |
||||
this(new File(SPRITES_FOLDER.getAbsolutePath(),filename)); |
||||
} |
||||
|
||||
Sprite(File filename){ |
||||
try { |
||||
BufferedImage img = ImageIO.read(filename); |
||||
this.width=img.getWidth(); |
||||
this.height=img.getHeight(); |
||||
this.img=img; |
||||
} catch (IOException e) { |
||||
e.printStackTrace(); |
||||
} |
||||
System.out.println("Loaded sprite for "+filename+"."); |
||||
} |
||||
|
||||
public BufferedImage getImg() { |
||||
return img; |
||||
} |
||||
|
||||
public void setImg(BufferedImage img) { |
||||
this.img = img; |
||||
} |
||||
|
||||
public int getHeight() { |
||||
return height; |
||||
} |
||||
|
||||
public int getCanvasHeight() { |
||||
return height; |
||||
} |
||||
|
||||
public void setHeight(int height) { |
||||
this.height = height; |
||||
} |
||||
|
||||
public int getWidth() { |
||||
return width; |
||||
} |
||||
|
||||
public int getCanvasWidth() { |
||||
return width; |
||||
} |
||||
|
||||
public void setWidth(int width) { |
||||
this.width = width; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,187 @@ |
||||
package sig.engine; |
||||
|
||||
import java.util.regex.Pattern; |
||||
|
||||
public class String{ |
||||
private StringBuilder sb; |
||||
private Point<Integer> bounds = new Point<Integer>(0,1); |
||||
private int currentLineWidth; |
||||
public String() { |
||||
this.sb=new StringBuilder(); |
||||
} |
||||
public String(java.lang.String str) { |
||||
this.sb=new StringBuilder(str); |
||||
updateBounds(str); |
||||
} |
||||
public String(Object obj) { |
||||
this.sb=new StringBuilder(obj.toString()); |
||||
updateBounds(obj.toString()); |
||||
} |
||||
public String(double d) { |
||||
this.sb=new StringBuilder(Double.toString(d)); |
||||
updateBounds(Double.toString(d)); |
||||
} |
||||
public String append(double d) { |
||||
this.sb.append(d); |
||||
updateBounds(Double.toString(d)); |
||||
return this; |
||||
} |
||||
public String append(char c) { |
||||
this.sb.append(c); |
||||
updateBounds(Character.toString(c)); |
||||
return this; |
||||
} |
||||
public String append(java.lang.Object...obj) { |
||||
for (int i=0;i<obj.length;i++) { |
||||
java.lang.Object o = obj[i]; |
||||
this.sb.append(o.toString()); |
||||
updateBounds(o.toString()); |
||||
} |
||||
return this; |
||||
} |
||||
|
||||
public StringBuilder getBuilder() { |
||||
return this.sb; |
||||
} |
||||
|
||||
/** |
||||
* Returns the index within this string of the first occurrence of the |
||||
* specified substring. |
||||
* |
||||
* <p>The returned index is the smallest value {@code k} for which: |
||||
* <pre>{@code |
||||
* this.toString().startsWith(str, k) |
||||
* }</pre> |
||||
* If no such value of {@code k} exists, then {@code -1} is returned. |
||||
* |
||||
* @param str the substring to search for. |
||||
* @return the index of the first occurrence of the specified substring, |
||||
* or {@code -1} if there is no such occurrence. |
||||
*/ |
||||
public int indexOf(java.lang.String str) { |
||||
return this.sb.indexOf(str); |
||||
} |
||||
|
||||
public void clear() { |
||||
this.sb.setLength(0); |
||||
bounds = new Point<Integer>(0,1); |
||||
} |
||||
|
||||
/** |
||||
* Returns the index within this string of the first occurrence of the |
||||
* specified substring, starting at the specified index. |
||||
* |
||||
* <p>The returned index is the smallest value {@code k} for which: |
||||
* <pre>{@code |
||||
* k >= Math.min(fromIndex, this.length()) && |
||||
* this.toString().startsWith(str, k) |
||||
* }</pre> |
||||
* If no such value of {@code k} exists, then {@code -1} is returned. |
||||
* |
||||
* @param str the substring to search for. |
||||
* @param fromIndex the index from which to start the search. |
||||
* @return the index of the first occurrence of the specified substring, |
||||
* starting at the specified index, |
||||
* or {@code -1} if there is no such occurrence. |
||||
*/ |
||||
public int indexOf(java.lang.String str,int fromIndex) { |
||||
return this.sb.indexOf(str,fromIndex); |
||||
} |
||||
/** |
||||
* Replaces the characters in a substring of this sequence |
||||
* with characters in the specified {@code String}. The substring |
||||
* begins at the specified {@code start} and extends to the character |
||||
* at index {@code end - 1} or to the end of the |
||||
* sequence if no such character exists. First the |
||||
* characters in the substring are removed and then the specified |
||||
* {@code String} is inserted at {@code start}. (This |
||||
* sequence will be lengthened to accommodate the |
||||
* specified String if necessary.) |
||||
* |
||||
* @param start The beginning index, inclusive. |
||||
* @param end The ending index, exclusive. |
||||
* @param str String that will replace previous contents. |
||||
* @return This object. |
||||
* @throws StringIndexOutOfBoundsException if {@code start} |
||||
* is negative, greater than {@code length()}, or |
||||
* greater than {@code end}. |
||||
*/ |
||||
public String replace(int start,int end,java.lang.String str) { |
||||
this.sb.replace(start,end,str); |
||||
bounds = new Point<Integer>(0,1); |
||||
updateBounds(this.sb.toString()); |
||||
return this; |
||||
} |
||||
|
||||
/** |
||||
* Returns a new {@code String} that contains a subsequence of |
||||
* characters currently contained in this character sequence. The |
||||
* substring begins at the specified index and extends to the end of |
||||
* this sequence. |
||||
* |
||||
* @param start The beginning index, inclusive. |
||||
* @return The new string. |
||||
* @throws StringIndexOutOfBoundsException if {@code start} is |
||||
* less than zero, or greater than the length of this object. |
||||
*/ |
||||
public String substring(int start) { |
||||
java.lang.String cutString = this.sb.substring(start); |
||||
clear(); |
||||
this.sb.append(cutString); |
||||
bounds = new Point<Integer>(0,1); |
||||
currentLineWidth=0; |
||||
updateBounds(this.sb.toString()); |
||||
return this; |
||||
} |
||||
|
||||
/** |
||||
* Returns a new {@code String} that contains a subsequence of |
||||
* characters currently contained in this sequence. The |
||||
* substring begins at the specified {@code start} and |
||||
* extends to the character at index {@code end - 1}. |
||||
* |
||||
* @param start The beginning index, inclusive. |
||||
* @param end The ending index, exclusive. |
||||
* @return The new string. |
||||
* @throws StringIndexOutOfBoundsException if {@code start} |
||||
* or {@code end} are negative or greater than |
||||
* {@code length()}, or {@code start} is |
||||
* greater than {@code end}. |
||||
*/ |
||||
public String substring(int start,int end) { |
||||
java.lang.String cutString = this.sb.substring(start,end); |
||||
clear(); |
||||
this.sb.append(cutString); |
||||
bounds = new Point<Integer>(0,1); |
||||
currentLineWidth=0; |
||||
updateBounds(this.sb.toString()); |
||||
return this; |
||||
} |
||||
|
||||
public int length() { |
||||
return this.sb.length(); |
||||
} |
||||
public java.lang.String toString() { |
||||
return this.sb.toString(); |
||||
} |
||||
public Point<Integer> getBounds(Font f) { |
||||
return new Point<Integer>(bounds.x*f.getGlyphWidth(),length()>0?Math.max(bounds.y*f.getGlyphHeight(),f.getGlyphHeight()):0); |
||||
} |
||||
private void updateBounds(java.lang.String string) { |
||||
for (int i=0;i<string.length();i++) { |
||||
if (string.charAt(i)=='\n') { |
||||
bounds.x=i+1>bounds.x?i+1:bounds.x; |
||||
bounds.y++; |
||||
currentLineWidth=0; |
||||
} else |
||||
if (string.charAt(i)==(char)26&&i<string.length()-1) { |
||||
byte nextCol=Byte.parseByte(string.substring(i+1, string.indexOf(' ',i+1))); |
||||
string=string.replaceFirst(Pattern.quote(Character.valueOf((char)26)+Byte.toString(nextCol)+" "),""); |
||||
i--; |
||||
} else { |
||||
currentLineWidth++; |
||||
bounds.x=currentLineWidth>bounds.x?currentLineWidth:bounds.x; |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,8 @@ |
||||
package sig.engine; |
||||
|
||||
public enum Transform { |
||||
NONE, |
||||
HORIZONTAL, |
||||
VERTICAL, |
||||
HORIZ_VERTIC |
||||
} |
@ -0,0 +1,11 @@ |
||||
.coauthors:3785ad38663e5fc43e574914ad067294 - |
||||
define.sh:d6b20a25a04a60d94f466e48fa60ac69 - |
||||
main.sh:32a1f953ffca8584d1eb57c0ecd8a582 - |
||||
search.sh:3321258db3b59d8e4cfe04c472516e45 - |
||||
.updateDirectories:0ede00461e947494545e694040787b3f - |
||||
commit.sh:9c342703d765cad7ea296f16d68f29f4 - |
||||
.coauthors:3785ad38663e5fc43e574914ad067294 - |
||||
define.sh:d6b20a25a04a60d94f466e48fa60ac69 - |
||||
main.sh:32a1f953ffca8584d1eb57c0ecd8a582 - |
||||
search.sh:3321258db3b59d8e4cfe04c472516e45 - |
||||
.updateDirectories:0ede00461e947494545e694040787b3f - |
@ -0,0 +1 @@ |
||||
sigonasr2 <sigonasr2@gmail.com> |
@ -0,0 +1,5 @@ |
||||
Java/ |
||||
C/ |
||||
C++/ |
||||
scripts/ |
||||
utils/ |
@ -0,0 +1,26 @@ |
||||
export VARS=("") |
||||
|
||||
export LANGUAGE="" |
||||
|
||||
function define() { |
||||
VARS+=("$1") |
||||
value="${*:2}" |
||||
eval export "$1"='$value' |
||||
} |
||||
|
||||
if [[ $(pwd) != *"SigScript" && $AUTO_UPDATE = "true" && $1 != "update" ]]; then |
||||
source utils/search.sh |
||||
|
||||
find . -type f -name md5 -delete |
||||
find . -type f -name filelist -delete |
||||
|
||||
#Check for hashes |
||||
FILES=$(cat utils/.updateDirectories) |
||||
for f in $FILES |
||||
do |
||||
search $f |
||||
check $f |
||||
done |
||||
else |
||||
echo "Dev build, no checks required." |
||||
fi |
@ -0,0 +1,5 @@ |
||||
.coauthors |
||||
define.sh |
||||
main.sh |
||||
search.sh |
||||
.updateDirectories |
@ -0,0 +1,28 @@ |
||||
if [ -z "$1" ] |
||||
then |
||||
echo "" |
||||
echo " Usage: ./sig <command> {args}" |
||||
echo "" |
||||
printf "====\tCurrent Configuration" |
||||
printf "\t=====================" |
||||
for t in ${VARS[@]} |
||||
do |
||||
printf "\n\t%-15s%20s" $t ${!t} |
||||
done |
||||
printf "\n=====================================================" |
||||
echo "" |
||||
echo "" |
||||
echo " Command List:" |
||||
FILES=$(ls -1A ./$LANGUAGE/scripts 2>/dev/null | sed -e 's/\.sh$//' | sed -e 's/^/ /') |
||||
for f in $FILES |
||||
do |
||||
if [ -f "./$LANGUAGE/scripts/$f.sh" ]; then |
||||
DESC="$(head -n1 ./$LANGUAGE/scripts/$f.sh)" |
||||
printf "\n\t%-15s%-65s" $f "${DESC:1}" |
||||
fi |
||||
done |
||||
echo "" |
||||
exit |
||||
fi |
||||
|
||||
./$LANGUAGE/scripts/$1.sh "${@:2}" |
@ -0,0 +1,4 @@ |
||||
define.sh:3ecab0dffe2adfb950f3eb7c7061b750 - |
||||
main.sh:4e6e9f0650ec790ce2c4364db94f0caa - |
||||
search.sh:30e1842e9a13452ea883bb6516d28e1c - |
||||
.updateDirectories:971afb892e8280cb4c9ad43fb72a46a0 - |
@ -0,0 +1,103 @@ |
||||
function search() { |
||||
FILES2=$(ls -A $1 2>/dev/null) |
||||
for g in $FILES2 |
||||
do |
||||
if [ -d $1$g ]; |
||||
then |
||||
echo "$1$g is a directory" |
||||
search $1$g/ |
||||
else |
||||
echo "$1$g is a file" |
||||
if [ $g != "md5" ] && [ $g != "filelist" ] && [ $g != ".package.files" ]; then |
||||
if [ $g != ".coauthors" ] && [ $g != "version_info" ]; then |
||||
SUM=$(md5sum < $1$g) |
||||
echo "$g:$SUM" >> $1md5 |
||||
fi |
||||
echo "$g" >> $1filelist |
||||
else |
||||
echo " ignoring $g..." |
||||
fi |
||||
fi |
||||
done |
||||
} |
||||
|
||||
function check() { |
||||
echo "Check $1" |
||||
FILES2=$(ls -A $1 2>/dev/null) |
||||
if [ -f "$1/md5" ]; |
||||
then |
||||
echo " md5: http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1md5" |
||||
curl -H 'Cache-Control: no-cache, no-store' -s "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1md5" --output /tmp/out |
||||
cmp -s $1/md5 /tmp/out |
||||
if [ "$?" -ne 0 ] |
||||
then |
||||
echo " Differences detected!" |
||||
cat /tmp/out |
||||
while IFS= read -r line |
||||
do |
||||
IFS=':' read -ra split <<< $line |
||||
g="${split[0]}" |
||||
echo "LINE -- $g" |
||||
if [ "$g" != "md5" ] && [ "$g" != "filelist" ] && [ "$g" != ".package.files" ]; then |
||||
if [ -f $1$g ]; |
||||
then |
||||
if [ "$g" != ".coauthors" ] && [ "$g" != "version_info" ]; then |
||||
echo "++Redownload $1$g..." |
||||
if [ -f "$1$g" ]; then |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $1$g |
||||
else |
||||
echo "===Could not find directory, assuming regular scripts directory exists." |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $LANGUAGE/scripts/$g |
||||
fi |
||||
fi |
||||
else |
||||
echo "++==Downloading $1$g..." |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $1$g |
||||
fi |
||||
fi |
||||
done < /tmp/out |
||||
fi |
||||
fi |
||||
if [ -f "$1/filelist" ]; |
||||
then |
||||
echo " filelist: http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1filelist" |
||||
curl -H 'Cache-Control: no-cache, no-store' -s "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1filelist" --output /tmp/out |
||||
cmp -s $1/filelist /tmp/out |
||||
if [ "$?" -ne 0 ] |
||||
then |
||||
echo " Differences detected!" |
||||
cat /tmp/out |
||||
while IFS= read -r line |
||||
do |
||||
IFS=':' read -ra split <<< $line |
||||
g="${split[0]}" |
||||
echo "LINE -- $g" |
||||
if [ "$g" != "md5" ] && [ "$g" != "filelist" ] && [ "$g" != ".package.files" ]; then |
||||
if [ -f $1$g ]; |
||||
then |
||||
if [ "$g" != ".coauthors" ] && [ "$g" != "version_info" ]; then |
||||
echo "++Redownload $1$g..." |
||||
if [ -f "$1$g" ]; then |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $1$g |
||||
else |
||||
echo "===Could not find directory, assuming regular scripts directory exists." |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $LANGUAGE/scripts/$g |
||||
fi |
||||
fi |
||||
else |
||||
echo "++==Downloading $1$g..." |
||||
curl -H 'Cache-Control: no-cache, no-store' "http://sig.projectdivar.com/sigonasr2/SigScript/raw/branch/main/$1$g" --output $1$g |
||||
fi |
||||
fi |
||||
done < /tmp/out |
||||
fi |
||||
fi |
||||
for g in $FILES2 |
||||
do |
||||
if [ -d $1$g ]; |
||||
then |
||||
echo "$1$g is a directory" |
||||
check $1$g/ |
||||
fi |
||||
done |
||||
} |