Upload project.
BIN
Pictures/Chair1.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
Pictures/Chair2.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
Pictures/Desk1.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
Pictures/Desk2.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
Pictures/Desk3.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
Pictures/Desk4.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
Pictures/Table1.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
Pictures/Table2.png
Normal file
After Width: | Height: | Size: 11 KiB |
73
build.xml
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- You may freely edit this file. See commented blocks below for -->
|
||||||
|
<!-- some examples of how to customize the build. -->
|
||||||
|
<!-- (If you delete it and reopen the project it will be recreated.) -->
|
||||||
|
<!-- By default, only the Clean and Build commands use this build script. -->
|
||||||
|
<!-- Commands such as Run, Debug, and Test only use this build script if -->
|
||||||
|
<!-- the Compile on Save feature is turned off for the project. -->
|
||||||
|
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
|
||||||
|
<!-- in the project's Project Properties dialog box.-->
|
||||||
|
<project name="ROFAApp" default="default" basedir=".">
|
||||||
|
<description>Builds, tests, and runs the project ROFAApp.</description>
|
||||||
|
<import file="nbproject/build-impl.xml"/>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
There exist several targets which are by default empty and which can be
|
||||||
|
used for execution of your tasks. These targets are usually executed
|
||||||
|
before and after some main targets. They are:
|
||||||
|
|
||||||
|
-pre-init: called before initialization of project properties
|
||||||
|
-post-init: called after initialization of project properties
|
||||||
|
-pre-compile: called before javac compilation
|
||||||
|
-post-compile: called after javac compilation
|
||||||
|
-pre-compile-single: called before javac compilation of single file
|
||||||
|
-post-compile-single: called after javac compilation of single file
|
||||||
|
-pre-compile-test: called before javac compilation of JUnit tests
|
||||||
|
-post-compile-test: called after javac compilation of JUnit tests
|
||||||
|
-pre-compile-test-single: called before javac compilation of single JUnit test
|
||||||
|
-post-compile-test-single: called after javac compilation of single JUunit test
|
||||||
|
-pre-jar: called before JAR building
|
||||||
|
-post-jar: called after JAR building
|
||||||
|
-post-clean: called after cleaning build products
|
||||||
|
|
||||||
|
(Targets beginning with '-' are not intended to be called on their own.)
|
||||||
|
|
||||||
|
Example of inserting an obfuscator after compilation could look like this:
|
||||||
|
|
||||||
|
<target name="-post-compile">
|
||||||
|
<obfuscate>
|
||||||
|
<fileset dir="${build.classes.dir}"/>
|
||||||
|
</obfuscate>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
For list of available properties check the imported
|
||||||
|
nbproject/build-impl.xml file.
|
||||||
|
|
||||||
|
|
||||||
|
Another way to customize the build is by overriding existing main targets.
|
||||||
|
The targets of interest are:
|
||||||
|
|
||||||
|
-init-macrodef-javac: defines macro for javac compilation
|
||||||
|
-init-macrodef-junit: defines macro for junit execution
|
||||||
|
-init-macrodef-debug: defines macro for class debugging
|
||||||
|
-init-macrodef-java: defines macro for class execution
|
||||||
|
-do-jar: JAR building
|
||||||
|
run: execution of project
|
||||||
|
-javadoc-build: Javadoc generation
|
||||||
|
test-report: JUnit report generation
|
||||||
|
|
||||||
|
An example of overriding the target for project execution could look like this:
|
||||||
|
|
||||||
|
<target name="run" depends="ROFAApp-impl.jar">
|
||||||
|
<exec dir="bin" executable="launcher.exe">
|
||||||
|
<arg file="${dist.jar}"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
Notice that the overridden target depends on the jar target and not only on
|
||||||
|
the compile target as the regular run target does. Again, for a list of available
|
||||||
|
properties which you can use, check the target you are overriding in the
|
||||||
|
nbproject/build-impl.xml file.
|
||||||
|
|
||||||
|
-->
|
||||||
|
</project>
|
32
dist/README.TXT
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
========================
|
||||||
|
BUILD OUTPUT DESCRIPTION
|
||||||
|
========================
|
||||||
|
|
||||||
|
When you build an Java application project that has a main class, the IDE
|
||||||
|
automatically copies all of the JAR
|
||||||
|
files on the projects classpath to your projects dist/lib folder. The IDE
|
||||||
|
also adds each of the JAR files to the Class-Path element in the application
|
||||||
|
JAR files manifest file (MANIFEST.MF).
|
||||||
|
|
||||||
|
To run the project from the command line, go to the dist folder and
|
||||||
|
type the following:
|
||||||
|
|
||||||
|
java -jar "ROFAApp.jar"
|
||||||
|
|
||||||
|
To distribute this project, zip up the dist folder (including the lib folder)
|
||||||
|
and distribute the ZIP file.
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
|
||||||
|
* If two JAR files on the project classpath have the same name, only the first
|
||||||
|
JAR file is copied to the lib folder.
|
||||||
|
* Only JAR files are copied to the lib folder.
|
||||||
|
If the classpath contains other types of files or folders, these files (folders)
|
||||||
|
are not copied.
|
||||||
|
* If a library on the projects classpath also has a Class-Path element
|
||||||
|
specified in the manifest,the content of the Class-Path element has to be on
|
||||||
|
the projects runtime path.
|
||||||
|
* To set a main class in a standard Java project, right-click the project node
|
||||||
|
in the Projects window and choose Properties. Then click Run and enter the
|
||||||
|
class name in the Main Class field. Alternatively, you can manually type the
|
||||||
|
class name in the manifest Main-Class element.
|
BIN
dist/ROFAApp.jar
vendored
Normal file
32
dist/javadoc/allclasses-frame.html
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>All Classes</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 class="bar">All Classes</h1>
|
||||||
|
<div class="indexContainer">
|
||||||
|
<ul>
|
||||||
|
<li><a href="rofaapp/AddItemWindow.html" title="class in rofaapp" target="classFrame">AddItemWindow</a></li>
|
||||||
|
<li><a href="rofaapp/Furniture.html" title="class in rofaapp" target="classFrame">Furniture</a></li>
|
||||||
|
<li><a href="rofaapp/ItemArmChair.html" title="class in rofaapp" target="classFrame">ItemArmChair</a></li>
|
||||||
|
<li><a href="rofaapp/ItemChair.html" title="class in rofaapp" target="classFrame">ItemChair</a></li>
|
||||||
|
<li><a href="rofaapp/ItemDesk.html" title="class in rofaapp" target="classFrame">ItemDesk</a></li>
|
||||||
|
<li><a href="rofaapp/ItemIcon.html" title="class in rofaapp" target="classFrame">ItemIcon</a></li>
|
||||||
|
<li><a href="rofaapp/ItemOrder.html" title="class in rofaapp" target="classFrame">ItemOrder</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTable.html" title="class in rofaapp" target="classFrame">ItemTable</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTableChrome.html" title="class in rofaapp" target="classFrame">ItemTableChrome</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTableWood.html" title="class in rofaapp" target="classFrame">ItemTableWood</a></li>
|
||||||
|
<li><a href="rofaapp/MainWindow.html" title="class in rofaapp" target="classFrame">MainWindow</a></li>
|
||||||
|
<li><a href="rofaapp/ROFCMain.html" title="class in rofaapp" target="classFrame">ROFCMain</a></li>
|
||||||
|
<li><a href="rofaapp/TypeWood.html" title="class in rofaapp" target="classFrame">TypeWood</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
dist/javadoc/allclasses-noframe.html
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>All Classes</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 class="bar">All Classes</h1>
|
||||||
|
<div class="indexContainer">
|
||||||
|
<ul>
|
||||||
|
<li><a href="rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></li>
|
||||||
|
<li><a href="rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></li>
|
||||||
|
<li><a href="rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></li>
|
||||||
|
<li><a href="rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></li>
|
||||||
|
<li><a href="rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></li>
|
||||||
|
<li><a href="rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></li>
|
||||||
|
<li><a href="rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></li>
|
||||||
|
<li><a href="rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></li>
|
||||||
|
<li><a href="rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></li>
|
||||||
|
<li><a href="rofaapp/ROFCMain.html" title="class in rofaapp">ROFCMain</a></li>
|
||||||
|
<li><a href="rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
247
dist/javadoc/constant-values.html
vendored
Normal file
@ -0,0 +1,247 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Constant Field Values</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.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) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="constant-values.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
|
||||||
|
<h2 title="Contents">Contents</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#rofaapp">rofaapp.*</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="constantValuesContainer"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 title="rofaapp">rofaapp.*</h2>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemArmChair.units">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final int</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemArmChair.html#units">units</a></code></td>
|
||||||
|
<td class="colLast"><code>1875</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemChair.units">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final int</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemChair.html#units">units</a></code></td>
|
||||||
|
<td class="colLast"><code>1625</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemDesk.height">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final int</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemDesk.html#height">height</a></code></td>
|
||||||
|
<td class="colLast"><code>80</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemOrder.arraySize">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final transient int</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemOrder.html#arraySize">arraySize</a></code></td>
|
||||||
|
<td class="colLast"><code>9</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemTableChrome.basePrice">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final double</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemTableChrome.html#basePrice">basePrice</a></code></td>
|
||||||
|
<td class="colLast"><code>35.0</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
|
||||||
|
<caption><span>rofaapp.<a href="rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th scope="col">Constant Field</th>
|
||||||
|
<th class="colLast" scope="col">Value</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="rofaapp.ItemTableWood.basePrice">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>private final double</code></td>
|
||||||
|
<td><code><a href="rofaapp/ItemTableWood.html#basePrice">basePrice</a></code></td>
|
||||||
|
<td class="colLast"><code>45.0</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="constant-values.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/deprecated-list.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Deprecated List</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Deprecated List";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li class="navBarCell1Rev">Deprecated</li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 title="Deprecated API" class="title">Deprecated API</h1>
|
||||||
|
<h2 title="Contents">Contents</h2>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li class="navBarCell1Rev">Deprecated</li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
224
dist/javadoc/help-doc.html
vendored
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>API Help</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="API Help";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li class="navBarCell1Rev">Help</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="help-doc.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<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">
|
||||||
|
<h2>Package</h2>
|
||||||
|
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Interfaces (italic)</li>
|
||||||
|
<li>Classes</li>
|
||||||
|
<li>Enums</li>
|
||||||
|
<li>Exceptions</li>
|
||||||
|
<li>Errors</li>
|
||||||
|
<li>Annotation Types</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>Class/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/interface declaration</li>
|
||||||
|
<li>Class/interface description</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>Nested Class Summary</li>
|
||||||
|
<li>Field Summary</li>
|
||||||
|
<li>Constructor Summary</li>
|
||||||
|
<li>Method Summary</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>Field 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>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>Use</h2>
|
||||||
|
<p>Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</p>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The 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 "Tree" displays the hierarchy for only that package.</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>Index</h2>
|
||||||
|
<p>The <a href="index-files/index-1.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>Prev/Next</h2>
|
||||||
|
<p>These links take you to the next or previous class, interface, package, or related page.</p>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>Frames/No Frames</h2>
|
||||||
|
<p>These links show and hide the HTML frames. All pages are available with or without frames.</p>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h2>All Classes</h2>
|
||||||
|
<p>The <a href="allclasses-noframe.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<span class="emphasizedPhrase">This help file applies to API documentation generated using the standard doclet.</span></div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li class="navBarCell1Rev">Help</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="help-doc.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
150
dist/javadoc/index-files/index-1.html
vendored
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>A-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="A-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li>Prev Letter</li>
|
||||||
|
<li><a href="index-2.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-1.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:A">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">A</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed(ActionEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Action listener for the buttons shown on the window.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed(ActionEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#add-rofaapp.Furniture-int-boolean-">add(Furniture, int, boolean)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Adds an item furniture to the <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> at the given index.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="../rofaapp/AddItemWindow.html" title="class in rofaapp"><span class="typeNameLink">AddItemWindow</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-">AddItemWindow(int, ItemOrder, TypeWood[])</a></span> - Constructor for class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor used when adding a new item.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">AddItemWindow(int, ItemOrder, TypeWood[], int, Furniture)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor used when editing an existing item.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#armrestsCheckBoxChair">armrestsCheckBoxChair</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#arraySize">arraySize</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li>Prev Letter</li>
|
||||||
|
<li><a href="index-2.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-1.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
130
dist/javadoc/index-files/index-10.html
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:00 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>L-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="L-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-9.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-11.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-10.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-10.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:L">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">L</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#loadEditSettings-rofaapp.Furniture-">loadEditSettings(Furniture)</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Loads a given furniture item, and changes the window elements to the attributes of the given furniture item.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-9.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-11.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-10.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-10.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
156
dist/javadoc/index-files/index-11.html
vendored
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:00 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>M-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="M-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-10.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-12.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-11.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-11.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:M">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">M</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ROFCMain.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class rofaapp.<a href="../rofaapp/ROFCMain.html" title="class in rofaapp">ROFCMain</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">MainWindow</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#MainWindow--">MainWindow()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor that initialises the window and it's properties (such as title, size, and it's layout).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuAddItemButton">menuAddItemButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuClearButton">menuClearButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuLoadButton">menuLoadButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuPanel">menuPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuSaveButton">menuSaveButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuSummaryButton">menuSummaryButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseClicked-java.awt.event.MouseEvent-">mouseClicked(MouseEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseEntered-java.awt.event.MouseEvent-">mouseEntered(MouseEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseExited-java.awt.event.MouseEvent-">mouseExited(MouseEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mousePressed-java.awt.event.MouseEvent-">mousePressed(MouseEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseReleased-java.awt.event.MouseEvent-">mouseReleased(MouseEvent)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-10.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-12.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-11.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-11.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
134
dist/javadoc/index-files/index-12.html
vendored
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:00 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>N-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="N-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-11.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-13.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-12.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-12.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:N">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">N</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#name">name</a></span> - Variable in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#name">name</a></span> - Variable in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#normalise--">normalise()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Shifts all objects within <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> so that there are no gaps in between items in the array.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-11.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-13.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-12.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-12.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
130
dist/javadoc/index-files/index-13.html
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>O-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="O-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-12.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-14.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-13.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-13.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:O">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">O</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#order">order</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#orderList">orderList</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-12.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-14.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-13.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-13.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
128
dist/javadoc/index-files/index-14.html
vendored
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>P-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="P-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-13.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-15.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-14.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-14.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:P">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">P</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#price">price</a></span> - Variable in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-13.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-15.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-14.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-14.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
130
dist/javadoc/index-files/index-15.html
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Q-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Q-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-14.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-16.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-15.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-15.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:Q">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">Q</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#quantitySpinnerChair">quantitySpinnerChair</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#quantitySpinnerTable">quantitySpinnerTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-14.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-16.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-15.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-15.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
140
dist/javadoc/index-files/index-16.html
vendored
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>R-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="R-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-15.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-17.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-16.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-16.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:R">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">R</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#resize-javax.swing.ImageIcon-int-int-">resize(ImageIcon, int, int)</a></span> - Static method in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#resize-javax.swing.ImageIcon-java.awt.Dimension-">resize(ImageIcon, Dimension)</a></span> - Static method in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="../rofaapp/package-summary.html">rofaapp</a> - package rofaapp</dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">ROFCMain</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ROFCMain.html#ROFCMain--">ROFCMain()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ROFCMain.html" title="class in rofaapp">ROFCMain</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-15.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-17.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-16.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-16.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
150
dist/javadoc/index-files/index-17.html
vendored
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>S-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="S-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-16.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-18.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-17.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-17.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:S">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">S</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setDepth-int-">setDepth(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#setDiameter-int-">setDiameter(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setDraws-int-">setDraws(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon(ImageIcon)</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setId-int-">setId(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-">setItemPanel(JPanel, Furniture)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Sets the given panel to the given furniture object, meaning the panel contains the icon of the given furniture.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName(String)</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setWidth-int-">setWidth(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood(TypeWood)</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#summaryPanel">summaryPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#summaryTitleLabel">summaryTitleLabel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-16.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-18.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-17.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-17.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
140
dist/javadoc/index-files/index-18.html
vendored
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>T-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="T-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-17.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-19.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-18.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-18.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:T">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">T</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#TABLE_ICON_1">TABLE_ICON_1</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#TABLE_ICON_2">TABLE_ICON_2</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#tablePanel">tablePanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#toString--">toString()</a></span> - Method in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the name of the wood type.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="../rofaapp/TypeWood.html" title="class in rofaapp"><span class="typeNameLink">TypeWood</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#TypeWood-java.lang.String-double-">TypeWood(String, double)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-17.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-19.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-18.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-18.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
142
dist/javadoc/index-files/index-19.html
vendored
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>U-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="U-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-18.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-20.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-19.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-19.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:U">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">U</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#units">units</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#units">units</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateItemOrder--">updateItemOrder()</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Iterates through each of the panels within the <a href="../rofaapp/MainWindow.html#gridPanel"><code>MainWindow.gridPanel</code></a> and calls <a href="../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-"><code>MainWindow.setItemPanel(JPanel, Furniture)</code></a> to update each panel with the correct image and data.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateItemSummaryPanel-int-">updateItemSummaryPanel(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Changes the elements within the <a href="../rofaapp/MainWindow.html#itemSummaryPanel"><code>MainWindow.itemSummaryPanel</code></a> depending on what the user has clicked.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateSummaryPanel--">updateSummaryPanel()</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Updates and redraws the total price label at the bottom of the window.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-18.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-20.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-19.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-19.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
136
dist/javadoc/index-files/index-2.html
vendored
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>B-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="B-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-1.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-3.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-2.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-2.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:B">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">B</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#basePrice">basePrice</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#basePrice">basePrice</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchChair">buttonSwitchChair</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchDesk">buttonSwitchDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchTable">buttonSwitchTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-1.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-3.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-2.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-2.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
144
dist/javadoc/index-files/index-20.html
vendored
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>W-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="W-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-19.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-21.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-20.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-20.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:W">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">W</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#width">width</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#widthSpinnerDesk">widthSpinnerDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#wood">wood</a></span> - Variable in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#WOOD_OAK">WOOD_OAK</a></span> - Static variable in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#WOOD_WALNUT">WOOD_WALNUT</a></span> - Static variable in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxChair">woodComboBoxChair</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxDesk">woodComboBoxDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxTable">woodComboBoxTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodTypes">woodTypes</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-19.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-21.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-20.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-20.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
130
dist/javadoc/index-files/index-21.html
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Y-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Y-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-20.html">Prev Letter</a></li>
|
||||||
|
<li>Next Letter</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-21.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-21.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:Y">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">Y</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#yesButton">yesButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#yesnoPanel">yesnoPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-20.html">Prev Letter</a></li>
|
||||||
|
<li>Next Letter</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-21.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-21.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
150
dist/javadoc/index-files/index-3.html
vendored
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>C-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="C-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-2.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-4.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-3.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-3.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:C">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">C</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#cancelButton">cancelButton</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#CHAIR_ICON_1">CHAIR_ICON_1</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#CHAIR_ICON_2">CHAIR_ICON_2</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#chairPanel">chairPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#changeSelectedPanel-int-">changeSelectedPanel(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Changes the currently selected tab.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#changeSelectedPanel-int-int-int-">changeSelectedPanel(int, int, int)</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Changes the current selected, and highlighed, <a href="../rofaapp/MainWindow.html#imagepanels"><code>MainWindow.imagepanels</code></a>.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#chromeCheckBoxTable">chromeCheckBoxTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#currentOrder">currentOrder</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#currentSelected">currentSelected</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#currentSize">currentSize</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-2.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-4.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-3.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-3.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
158
dist/javadoc/index-files/index-4.html
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>D-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="D-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-3.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-5.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-4.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-4.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:D">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">D</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#del-int-">del(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Deletes (nulls) a furniture object in <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> where the given index is.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#deleteAll--">deleteAll()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Deletes (nulls) everything in the list.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#depth">depth</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#depthSpinnerDesk">depthSpinnerDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON">DESK_ICON</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_1">DESK_ICON_1</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_2">DESK_ICON_2</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_3">DESK_ICON_3</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_4">DESK_ICON_4</a></span> - Static variable in class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#deskPanel">deskPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#diameter">diameter</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#diameterSpinnerTable">diameterSpinnerTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#draws">draws</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#drawsSpinnerDesk">drawsSpinnerDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-3.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-5.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-4.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-4.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
128
dist/javadoc/index-files/index-5.html
vendored
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>E-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="E-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-4.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-6.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-5.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-5.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:E">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">E</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#editIndex">editIndex</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-4.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-6.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-5.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-5.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
130
dist/javadoc/index-files/index-6.html
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:57 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>F-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="F-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-5.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-7.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-6.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-6.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:F">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">F</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Furniture</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#Furniture--">Furniture()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-5.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-7.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-6.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-6.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
202
dist/javadoc/index-files/index-7.html
vendored
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:57 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>G-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="G-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-6.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-8.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-7.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-7.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:G">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">G</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#get-int-">get(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the furniture object of the given index in the <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> if valid.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getCurrentSize--">getCurrentSize()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Current array size.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getDepth--">getDepth()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#getDiameter--">getDiameter()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getDraws--">getDraws()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getFirstAvailable--">getFirstAvailable()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the index of the first available space within <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a>.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getFreeSpace--">getFreeSpace()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the number of free spaces within the <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a>.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getHeight--">getHeight()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getIcon--">getIcon()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getId--">getId()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getMaxSize--">getMaxSize()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getName--">getName()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#getName--">getName()</a></span> - Method in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the price of all the items within <a href="../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a>.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#getPrice--">getPrice()</a></span> - Method in class rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#getTabValue-rofaapp.Furniture-">getTabValue(Furniture)</a></span> - Static method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Simple method for giving an instance of furnature and getting back the tab index of the object in the window.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getUnits--">getUnits()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#getUnits--">getUnits()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getUnits--">getUnits()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Does nothing.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#getUnits--">getUnits()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#getUpdatedOrder--">getUpdatedOrder()</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getWidth--">getWidth()</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getWood--">getWood()</a></span> - Method in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#gridPanel">gridPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#gridTotalPriceLabel">gridTotalPriceLabel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-6.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-8.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-7.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-7.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
128
dist/javadoc/index-files/index-8.html
vendored
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:58 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>H-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="H-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-7.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-9.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-8.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-8.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:H">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">H</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#height">height</a></span> - Variable in class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-7.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-9.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-8.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-8.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
206
dist/javadoc/index-files/index-9.html
vendored
Normal file
@ -0,0 +1,206 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:58 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>I-Index</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="I-Index";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-8.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-10.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-9.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-9.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> <a name="I:I">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h2 class="title">I</h2>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#icon">icon</a></span> - Variable in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/Furniture.html#id">id</a></span> - Variable in class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerChair">idSpinnerChair</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerDesk">idSpinnerDesk</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerTable">idSpinnerTable</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#imagepanels">imagepanels</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#initPanels--">initPanels()</a></span> - Method in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Initialises all four panels used in the main window (creates instances of them, their sizes and adds them to the master panel).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initSelectButtons--">initSelectButtons()</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Initialises the three buttons displayed at the top of the frame (instantiates them, adds their text, creates the actionlistener and adds them to the panel).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initSelectedPanels--">initSelectedPanels()</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Creates all of the panels and buttons and elements needed for each of the panels for each of the furniture items.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initWindowSettings--">initWindowSettings()</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Initialises basic elements of the window (such as layout, the default close operation and the modality type).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initYesNoButtons--">initYesNoButtons()</a></span> - Method in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Initialises the 'Yes-No' buttons shown at the bottom of the form (creates them and adds them to the panel).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#isEdit">isEdit</a></span> - Variable in class rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#isValidIndex-int-">isValidIndex(int)</a></span> - Method in class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Checks if the given number is a valid index (0 to <a href="../rofaapp/ItemOrder.html#arraySize"><code>ItemOrder.arraySize</code></a>).</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">ItemArmChair</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#ItemArmChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemArmChair(int, TypeWood, ImageIcon)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">ItemChair</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#ItemChair--">ItemChair()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#ItemChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemChair(int, TypeWood, ImageIcon)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Full Constructor</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">ItemDesk</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#ItemDesk-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-int-int-">ItemDesk(int, TypeWood, ImageIcon, int, int, int)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">ItemIcon</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#ItemIcon--">ItemIcon()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">ItemOrder</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#ItemOrder--">ItemOrder()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Creates an empty item order of <a href="../rofaapp/ItemOrder.html#arraySize"><code>ItemOrder.arraySize</code></a> items.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#itemSummaryPanel">itemSummaryPanel</a></span> - Variable in class rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">ItemTable</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#ItemTable--">ItemTable()</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">ItemTableChrome</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#ItemTableChrome-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableChrome(int, TypeWood, ImageIcon, int)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">ItemTableWood</span></a> - Class in <a href="../rofaapp/package-summary.html">rofaapp</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#ItemTableWood-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableWood(int, TypeWood, ImageIcon, int)</a></span> - Constructor for class rofaapp.<a href="../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for the Wood Table.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">W</a> <a href="index-21.html">Y</a> </div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</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">
|
||||||
|
<li><a href="index-8.html">Prev Letter</a></li>
|
||||||
|
<li><a href="index-10.html">Next Letter</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?index-files/index-9.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="index-9.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
73
dist/javadoc/index.html
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:41:03 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Generated Documentation (Untitled)</title>
|
||||||
|
<script type="text/javascript">
|
||||||
|
tmpTargetPage = "" + window.location.search;
|
||||||
|
if (tmpTargetPage != "" && tmpTargetPage != "undefined")
|
||||||
|
tmpTargetPage = tmpTargetPage.substring(1);
|
||||||
|
if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && !validURL(tmpTargetPage)))
|
||||||
|
tmpTargetPage = "undefined";
|
||||||
|
targetPage = tmpTargetPage;
|
||||||
|
function validURL(url) {
|
||||||
|
try {
|
||||||
|
url = decodeURIComponent(url);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var pos = url.indexOf(".html");
|
||||||
|
if (pos == -1 || pos != url.length - 5)
|
||||||
|
return false;
|
||||||
|
var allowNumber = false;
|
||||||
|
var allowSep = false;
|
||||||
|
var seenDot = false;
|
||||||
|
for (var i = 0; i < url.length - 5; i++) {
|
||||||
|
var ch = url.charAt(i);
|
||||||
|
if ('a' <= ch && ch <= 'z' ||
|
||||||
|
'A' <= ch && ch <= 'Z' ||
|
||||||
|
ch == '$' ||
|
||||||
|
ch == '_' ||
|
||||||
|
ch.charCodeAt(0) > 127) {
|
||||||
|
allowNumber = true;
|
||||||
|
allowSep = true;
|
||||||
|
} else if ('0' <= ch && ch <= '9'
|
||||||
|
|| ch == '-') {
|
||||||
|
if (!allowNumber)
|
||||||
|
return false;
|
||||||
|
} else if (ch == '/' || ch == '.') {
|
||||||
|
if (!allowSep)
|
||||||
|
return false;
|
||||||
|
allowNumber = false;
|
||||||
|
allowSep = false;
|
||||||
|
if (ch == '.')
|
||||||
|
seenDot = true;
|
||||||
|
if (ch == '/' && seenDot)
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
function loadFrames() {
|
||||||
|
if (targetPage != "" && targetPage != "undefined")
|
||||||
|
top.classFrame.location = top.targetPage;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
|
||||||
|
<frame src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
|
||||||
|
<frame src="rofaapp/package-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
|
||||||
|
<noframes>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<h2>Frame Alert</h2>
|
||||||
|
<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="rofaapp/package-summary.html">Non-frame version</a>.</p>
|
||||||
|
</noframes>
|
||||||
|
</frameset>
|
||||||
|
</html>
|
185
dist/javadoc/overview-tree.html
vendored
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:55 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Class Hierarchy</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Class Hierarchy";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li class="navBarCell1Rev">Tree</li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="overview-tree.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="title">Hierarchy For All Packages</h1>
|
||||||
|
<span class="packageHierarchyLabel">Package Hierarchies:</span>
|
||||||
|
<ul class="horizontal">
|
||||||
|
<li><a href="rofaapp/package-tree.html">rofaapp</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<h2 title="Class Hierarchy">Class Hierarchy</h2>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.lang.Object
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Container
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Window (implements javax.accessibility.Accessible)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Dialog
|
||||||
|
<ul>
|
||||||
|
<li type="circle">javax.swing.JDialog (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/AddItemWindow.html" title="class in rofaapp"><span class="typeNameLink">AddItemWindow</span></a> (implements java.awt.event.ActionListener)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">java.awt.Frame (implements java.awt.MenuContainer)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">javax.swing.JFrame (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">MainWindow</span></a> (implements java.awt.event.ActionListener, java.awt.event.MouseListener)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Furniture</span></a> (implements java.io.Serializable)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">ItemChair</span></a>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">ItemArmChair</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">ItemDesk</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">ItemTable</span></a>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">ItemTableChrome</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">ItemTableWood</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">ItemIcon</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">ItemOrder</span></a> (implements java.io.Serializable)</li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">ROFCMain</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="rofaapp/TypeWood.html" title="class in rofaapp"><span class="typeNameLink">TypeWood</span></a> (implements java.io.Serializable)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li class="navBarCell1Rev">Tree</li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="overview-tree.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
1
dist/javadoc/package-list
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
rofaapp
|
992
dist/javadoc/rofaapp/AddItemWindow.html
vendored
Normal file
@ -0,0 +1,992 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:49 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>AddItemWindow</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="AddItemWindow";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":10,"i1":10,"i2":9,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/AddItemWindow.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev Class</li>
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/AddItemWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="AddItemWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul class="subNavList">
|
||||||
|
<li>Summary: </li>
|
||||||
|
<li><a href="#nested.classes.inherited.from.class.javax.swing.JDialog">Nested</a> | </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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class AddItemWindow" class="title">Class AddItemWindow</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Component</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Container</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Window</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Dialog</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>javax.swing.JDialog</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.AddItemWindow</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.awt.event.ActionListener, java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, java.util.EventListener, javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">AddItemWindow</span>
|
||||||
|
extends javax.swing.JDialog
|
||||||
|
implements java.awt.event.ActionListener</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.AddItemWindow">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.class.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested Class Summary</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JDialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class javax.swing.JDialog</h3>
|
||||||
|
<code>javax.swing.JDialog.AccessibleJDialog</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Dialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Dialog</h3>
|
||||||
|
<code>java.awt.Dialog.AccessibleAWTDialog, java.awt.Dialog.ModalExclusionType, java.awt.Dialog.ModalityType</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Window">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Window</h3>
|
||||||
|
<code>java.awt.Window.AccessibleAWTWindow, java.awt.Window.Type</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Container</h3>
|
||||||
|
<code>java.awt.Container.AccessibleAWTContainer</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Component</h3>
|
||||||
|
<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JCheckBox</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#armrestsCheckBoxChair">armrestsCheckBoxChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchChair">buttonSwitchChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchDesk">buttonSwitchDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#buttonSwitchTable">buttonSwitchTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#cancelButton">cancelButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#chairPanel">chairPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JCheckBox</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#chromeCheckBoxTable">chromeCheckBoxTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#depthSpinnerDesk">depthSpinnerDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#deskPanel">deskPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#diameterSpinnerTable">diameterSpinnerTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#drawsSpinnerDesk">drawsSpinnerDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#editIndex">editIndex</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerChair">idSpinnerChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerDesk">idSpinnerDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#idSpinnerTable">idSpinnerTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#isEdit">isEdit</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#order">order</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#quantitySpinnerChair">quantitySpinnerChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#quantitySpinnerTable">quantitySpinnerTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#tablePanel">tablePanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JSpinner</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#widthSpinnerDesk">widthSpinnerDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JComboBox</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxChair">woodComboBoxChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JComboBox</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxDesk">woodComboBoxDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JComboBox</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodComboBoxTable">woodComboBoxTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[]</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#woodTypes">woodTypes</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#yesButton">yesButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#yesnoPanel">yesnoPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JDialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class javax.swing.JDialog</h3>
|
||||||
|
<code>accessibleContext, rootPane, rootPaneCheckingEnabled</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.Dialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class java.awt.Dialog</h3>
|
||||||
|
<code>DEFAULT_MODALITY_TYPE</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class java.awt.Component</h3>
|
||||||
|
<code>BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.javax.swing.WindowConstants">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from interface javax.swing.WindowConstants</h3>
|
||||||
|
<code>DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, EXIT_ON_CLOSE, HIDE_ON_CLOSE</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from interface java.awt.image.ImageObserver</h3>
|
||||||
|
<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw)</code>
|
||||||
|
<div class="block">Constructor used when adding a new item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw,
|
||||||
|
int index,
|
||||||
|
<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Constructor used when editing an existing item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed</a></span>(java.awt.event.ActionEvent e)</code>
|
||||||
|
<div class="block">Action listener for the buttons shown on the window.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#changeSelectedPanel-int-">changeSelectedPanel</a></span>(int i)</code>
|
||||||
|
<div class="block">Changes the currently selected tab.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>static int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#getTabValue-rofaapp.Furniture-">getTabValue</a></span>(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Simple method for giving an instance of furnature and getting back the tab index of the object in the window.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i3" class="rowColor">
|
||||||
|
<td class="colFirst"><code><a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#getUpdatedOrder--">getUpdatedOrder</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i4" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initSelectButtons--">initSelectButtons</a></span>()</code>
|
||||||
|
<div class="block">Initialises the three buttons displayed at the top of the frame (instantiates them, adds their text, creates the actionlistener and adds them to the panel).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i5" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initSelectedPanels--">initSelectedPanels</a></span>()</code>
|
||||||
|
<div class="block">Creates all of the panels and buttons and elements needed for each of the panels for each of the furniture items.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i6" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initWindowSettings--">initWindowSettings</a></span>()</code>
|
||||||
|
<div class="block">Initialises basic elements of the window (such as layout, the default close operation and the modality type).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i7" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#initYesNoButtons--">initYesNoButtons</a></span>()</code>
|
||||||
|
<div class="block">Initialises the 'Yes-No' buttons shown at the bottom of the form (creates them and adds them to the panel).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i8" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/AddItemWindow.html#loadEditSettings-rofaapp.Furniture-">loadEditSettings</a></span>(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Loads a given furniture item, and changes the window elements to the attributes of the given furniture item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JDialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class javax.swing.JDialog</h3>
|
||||||
|
<code>addImpl, createRootPane, dialogInit, getAccessibleContext, getContentPane, getDefaultCloseOperation, getGlassPane, getGraphics, getJMenuBar, getLayeredPane, getRootPane, getTransferHandler, isDefaultLookAndFeelDecorated, isRootPaneCheckingEnabled, paramString, processWindowEvent, remove, repaint, setContentPane, setDefaultCloseOperation, setDefaultLookAndFeelDecorated, setGlassPane, setJMenuBar, setLayeredPane, setLayout, setRootPane, setRootPaneCheckingEnabled, setTransferHandler, update</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Dialog">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Dialog</h3>
|
||||||
|
<code>addNotify, getModalityType, getTitle, hide, isModal, isResizable, isUndecorated, setBackground, setModal, setModalityType, setOpacity, setResizable, setShape, setTitle, setUndecorated, setVisible, show, toBack</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Window">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Window</h3>
|
||||||
|
<code>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBackground, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOpacity, getOwnedWindows, getOwner, getOwnerlessWindows, getShape, getToolkit, getType, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isAutoRequestFocus, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isOpaque, isShowing, isValidateRoot, pack, paint, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeNotify, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setAutoRequestFocus, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImage, setIconImages, setLocation, setLocation, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setType, toFront</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Container</h3>
|
||||||
|
<code>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusDownCycle, validate, validateTree</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Component</h3>
|
||||||
|
<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, disable, disableEvents, dispatchEvent, enable, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBaseline, getBaselineResizeBehavior, getBounds, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocation, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, prepareImage, prepareImage, printAll, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resize, resize, revalidate, setComponentOrientation, setDropTarget, setEnabled, setFocusable, setFocusTraversalKeysEnabled, setForeground, setIgnoreRepaint, setLocale, setMaximumSize, setName, setPreferredSize, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="order">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>order</h4>
|
||||||
|
<pre>private <a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> order</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="woodTypes">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodTypes</h4>
|
||||||
|
<pre>private <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] woodTypes</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="isEdit">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>isEdit</h4>
|
||||||
|
<pre>private boolean isEdit</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="editIndex">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>editIndex</h4>
|
||||||
|
<pre>private int editIndex</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="chairPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>chairPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel chairPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="tablePanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>tablePanel</h4>
|
||||||
|
<pre>javax.swing.JPanel tablePanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="deskPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>deskPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel deskPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="yesnoPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>yesnoPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel yesnoPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="buttonSwitchChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchChair</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchChair</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="buttonSwitchTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchTable</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="buttonSwitchDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchDesk</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="yesButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>yesButton</h4>
|
||||||
|
<pre>javax.swing.JButton yesButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="cancelButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>cancelButton</h4>
|
||||||
|
<pre>javax.swing.JButton cancelButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="idSpinnerChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerChair</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerChair</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="quantitySpinnerChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>quantitySpinnerChair</h4>
|
||||||
|
<pre>javax.swing.JSpinner quantitySpinnerChair</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="idSpinnerDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="drawsSpinnerDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>drawsSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner drawsSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="widthSpinnerDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>widthSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner widthSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="depthSpinnerDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>depthSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner depthSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="idSpinnerTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="quantitySpinnerTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>quantitySpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner quantitySpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="diameterSpinnerTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>diameterSpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner diameterSpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="woodComboBoxChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxChair</h4>
|
||||||
|
<pre>javax.swing.JComboBox woodComboBoxChair</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="woodComboBoxDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxDesk</h4>
|
||||||
|
<pre>javax.swing.JComboBox woodComboBoxDesk</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="woodComboBoxTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxTable</h4>
|
||||||
|
<pre>javax.swing.JComboBox woodComboBoxTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="armrestsCheckBoxChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>armrestsCheckBoxChair</h4>
|
||||||
|
<pre>javax.swing.JCheckBox armrestsCheckBoxChair</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="chromeCheckBoxTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>chromeCheckBoxTable</h4>
|
||||||
|
<pre>javax.swing.JCheckBox chromeCheckBoxTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>AddItemWindow</h4>
|
||||||
|
<pre>public AddItemWindow(int defaultPanel,
|
||||||
|
<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw)</pre>
|
||||||
|
<div class="block">Constructor used when adding a new item.
|
||||||
|
<br>
|
||||||
|
Calls all initialisation functions for the window: <a href="../rofaapp/AddItemWindow.html#initWindowSettings--"><code>initWindowSettings()</code></a>, <a href="../rofaapp/AddItemWindow.html#initSelectButtons--"><code>initSelectButtons()</code></a>, <a href="../rofaapp/AddItemWindow.html#initSelectedPanels--"><code>initSelectedPanels()</code></a>, <a href="../rofaapp/AddItemWindow.html#initYesNoButtons--"><code>initYesNoButtons()</code></a>.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>defaultPanel</code> - Selects the panel that will be shown when the window is first shown (the default panel). Calls/is used in the function <a href="../rofaapp/AddItemWindow.html#changeSelectedPanel-int-"><code>changeSelectedPanel(int)</code></a>.</dd>
|
||||||
|
<dd><code>o</code> - The current item order that will be edited.</dd>
|
||||||
|
<dd><code>tw</code> - An array if all of the wood types.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>AddItemWindow</h4>
|
||||||
|
<pre>public AddItemWindow(int defaultPanel,
|
||||||
|
<a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw,
|
||||||
|
int index,
|
||||||
|
<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</pre>
|
||||||
|
<div class="block">Constructor used when editing an existing item.
|
||||||
|
Calls all initialisation functions for the window: <a href="../rofaapp/AddItemWindow.html#initWindowSettings--"><code>initWindowSettings()</code></a>, <a href="../rofaapp/AddItemWindow.html#initSelectButtons--"><code>initSelectButtons()</code></a>, <a href="../rofaapp/AddItemWindow.html#initSelectedPanels--"><code>initSelectedPanels()</code></a>, <a href="../rofaapp/AddItemWindow.html#initYesNoButtons--"><code>initYesNoButtons()</code></a>.
|
||||||
|
<br>
|
||||||
|
For the edit constructor, calls <a href="../rofaapp/AddItemWindow.html#loadEditSettings-rofaapp.Furniture-"><code>loadEditSettings(Furniture)</code></a> which shows the current item's attributes in the window.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>defaultPanel</code> - Selects the panel that will be shown when the window is first shown (the default panel). Calls/is used in the function <a href="../rofaapp/AddItemWindow.html#changeSelectedPanel-int-"><code>changeSelectedPanel(int)</code></a>.</dd>
|
||||||
|
<dd><code>o</code> - The current item order that will be edited.</dd>
|
||||||
|
<dd><code>tw</code> - An array if all of the wood types.</dd>
|
||||||
|
<dd><code>index</code> - The index of the currently edited item within the ItemOrder (0-8, if not, will throw an exception).</dd>
|
||||||
|
<dd><code>f</code> - The furniture object of the item that is being edited.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="initWindowSettings--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>initWindowSettings</h4>
|
||||||
|
<pre>private void initWindowSettings()</pre>
|
||||||
|
<div class="block">Initialises basic elements of the window (such as layout, the default close operation and the modality type).</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="initSelectButtons--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>initSelectButtons</h4>
|
||||||
|
<pre>private void initSelectButtons()</pre>
|
||||||
|
<div class="block">Initialises the three buttons displayed at the top of the frame (instantiates them, adds their text, creates the actionlistener and adds them to the panel).</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="initYesNoButtons--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>initYesNoButtons</h4>
|
||||||
|
<pre>private void initYesNoButtons()</pre>
|
||||||
|
<div class="block">Initialises the 'Yes-No' buttons shown at the bottom of the form (creates them and adds them to the panel).</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="initSelectedPanels--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>initSelectedPanels</h4>
|
||||||
|
<pre>private void initSelectedPanels()</pre>
|
||||||
|
<div class="block">Creates all of the panels and buttons and elements needed for each of the panels for each of the furniture items. Creates all elements, adds the action listeners for them and adds them to the window. (WARNING: Very long function of repetitiveness).</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="loadEditSettings-rofaapp.Furniture-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>loadEditSettings</h4>
|
||||||
|
<pre>private void loadEditSettings(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</pre>
|
||||||
|
<div class="block">Loads a given furniture item, and changes the window elements to the attributes of the given furniture item.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>f</code> - Given furniture item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getTabValue-rofaapp.Furniture-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getTabValue</h4>
|
||||||
|
<pre>public static int getTabValue(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</pre>
|
||||||
|
<div class="block">Simple method for giving an instance of furnature and getting back the tab index of the object in the window.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>f</code> - The furniture item.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>The tab index of the given item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="changeSelectedPanel-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>changeSelectedPanel</h4>
|
||||||
|
<pre>private void changeSelectedPanel(int i)</pre>
|
||||||
|
<div class="block">Changes the currently selected tab.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>i</code> - The tab index to switch views to. (1-3. If not a valid index, will display an empty panel.)</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getUpdatedOrder--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getUpdatedOrder</h4>
|
||||||
|
<pre>public <a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> getUpdatedOrder()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>The current order within the window instance.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="actionPerformed-java.awt.event.ActionEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>actionPerformed</h4>
|
||||||
|
<pre>public void actionPerformed(java.awt.event.ActionEvent e)</pre>
|
||||||
|
<div class="block">Action listener for the buttons shown on the window.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>actionPerformed</code> in interface <code>java.awt.event.ActionListener</code></dd>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>e</code> - ActionEvent.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/AddItemWindow.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev Class</li>
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/AddItemWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="AddItemWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul class="subNavList">
|
||||||
|
<li>Summary: </li>
|
||||||
|
<li><a href="#nested.classes.inherited.from.class.javax.swing.JDialog">Nested</a> | </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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
475
dist/javadoc/rofaapp/Furniture.html
vendored
Normal file
@ -0,0 +1,475 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:49 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Furniture</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Furniture";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":10,"i1":10,"i2":10,"i3":6,"i4":6,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
|
||||||
|
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
|
||||||
|
var altColor = "altColor";
|
||||||
|
var rowColor = "rowColor";
|
||||||
|
var tableTab = "tableTab";
|
||||||
|
var activeTableTab = "activeTableTab";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/Furniture.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/AddItemWindow.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/Furniture.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="Furniture.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class Furniture" class="title">Class Furniture</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.Furniture</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>Direct Known Subclasses:</dt>
|
||||||
|
<dd><a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a>, <a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a>, <a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public abstract class <span class="typeNameLabel">Furniture</span>
|
||||||
|
extends java.lang.Object
|
||||||
|
implements java.io.Serializable</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.Furniture">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#icon">icon</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#id">id</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private java.lang.String</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#name">name</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#wood">wood</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#Furniture--">Furniture</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getId--">getId</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>java.lang.String</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getName--">getName</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i3" class="rowColor">
|
||||||
|
<td class="colFirst"><code>abstract double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i4" class="altColor">
|
||||||
|
<td class="colFirst"><code>abstract int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getUnits--">getUnits</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i5" class="rowColor">
|
||||||
|
<td class="colFirst"><code><a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#getWood--">getWood</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i6" class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a></span>(javax.swing.ImageIcon i)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i7" class="rowColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setId-int-">setId</a></span>(int i)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i8" class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a></span>(java.lang.String s)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i9" class="rowColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></span>(<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> w)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="id">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>id</h4>
|
||||||
|
<pre>private int id</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="wood">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>wood</h4>
|
||||||
|
<pre>private <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> wood</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="icon">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>icon</h4>
|
||||||
|
<pre>private javax.swing.ImageIcon icon</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="name">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>name</h4>
|
||||||
|
<pre>private java.lang.String name</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="Furniture--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>Furniture</h4>
|
||||||
|
<pre>public Furniture()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getId--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getId</h4>
|
||||||
|
<pre>public int getId()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getWood--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getWood</h4>
|
||||||
|
<pre>public <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> getWood()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getIcon--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getIcon</h4>
|
||||||
|
<pre>public javax.swing.ImageIcon getIcon()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getName--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getName</h4>
|
||||||
|
<pre>public java.lang.String getName()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setId-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setId</h4>
|
||||||
|
<pre>public boolean setId(int i)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setWood-rofaapp.TypeWood-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setWood</h4>
|
||||||
|
<pre>public boolean setWood(<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> w)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setIcon-javax.swing.ImageIcon-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setIcon</h4>
|
||||||
|
<pre>public boolean setIcon(javax.swing.ImageIcon i)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setName-java.lang.String-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setName</h4>
|
||||||
|
<pre>public boolean setName(java.lang.String s)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getUnits--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getUnits</h4>
|
||||||
|
<pre>public abstract int getUnits()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public abstract double getPrice()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/Furniture.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/AddItemWindow.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/Furniture.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="Furniture.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
352
dist/javadoc/rofaapp/ItemArmChair.html
vendored
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:49 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemArmChair</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemArmChair";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemArmChair.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemArmChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemArmChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemArmChair" class="title">Class ItemArmChair</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/ItemChair.html" title="class in rofaapp">rofaapp.ItemChair</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemArmChair</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemArmChair</span>
|
||||||
|
extends <a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemArmChair">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#units">units</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#ItemArmChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemArmChair</a></span>(int i,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemArmChair.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.ItemChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></h3>
|
||||||
|
<code><a href="../rofaapp/ItemChair.html#getUnits--">getUnits</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="units">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>units</h4>
|
||||||
|
<pre>private final int units</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemArmChair.units">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemArmChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemArmChair</h4>
|
||||||
|
<pre>ItemArmChair(int i,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/ItemChair.html#getPrice--">getPrice</a></code> in class <code><a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd><a href="../rofaapp/ItemChair.html#units"><code>ItemChair.units</code></a> * woodPrice.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemArmChair.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemArmChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemArmChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
382
dist/javadoc/rofaapp/ItemChair.html
vendored
Normal file
@ -0,0 +1,382 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemChair</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemChair";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":10,"i1":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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemChair.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemChair" class="title">Class ItemChair</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemChair</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>Direct Known Subclasses:</dt>
|
||||||
|
<dd><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemChair</span>
|
||||||
|
extends <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemChair">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#units">units</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#ItemChair--">ItemChair</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#ItemChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemChair</a></span>(int i,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</code>
|
||||||
|
<div class="block">Full Constructor</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemChair.html#getUnits--">getUnits</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="units">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>units</h4>
|
||||||
|
<pre>private final int units</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemChair.units">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemChair--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemChair</h4>
|
||||||
|
<pre>ItemChair()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="ItemChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemChair</h4>
|
||||||
|
<pre>ItemChair(int i,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</pre>
|
||||||
|
<div class="block">Full Constructor</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>i</code> - ID of the item.</dd>
|
||||||
|
<dd><code>tw</code> - Wood Type of the item.</dd>
|
||||||
|
<dd><code>im</code> - Icon of the item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getUnits--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getUnits</h4>
|
||||||
|
<pre>public int getUnits()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getUnits--">getUnits</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getPrice--">getPrice</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd><a href="../rofaapp/ItemChair.html#units"><code>units</code></a> * woodPrice.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemChair.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
507
dist/javadoc/rofaapp/ItemDesk.html
vendored
Normal file
@ -0,0 +1,507 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemDesk</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemDesk";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemDesk.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemDesk.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemDesk.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemDesk" class="title">Class ItemDesk</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemDesk</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemDesk</span>
|
||||||
|
extends <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemDesk">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#depth">depth</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#draws">draws</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#height">height</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#width">width</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#ItemDesk-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-int-int-">ItemDesk</a></span>(int idl,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ic,
|
||||||
|
int drawcount,
|
||||||
|
int widthcount,
|
||||||
|
int depthcount)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getDepth--">getDepth</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getDraws--">getDraws</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getHeight--">getHeight</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i3" class="rowColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i4" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getUnits--">getUnits</a></span>()</code>
|
||||||
|
<div class="block">Does nothing.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i5" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#getWidth--">getWidth</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i6" class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setDepth-int-">setDepth</a></span>(int d)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i7" class="rowColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setDraws-int-">setDraws</a></span>(int d)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i8" class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemDesk.html#setWidth-int-">setWidth</a></span>(int w)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="height">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>height</h4>
|
||||||
|
<pre>private final int height</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemDesk.height">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="depth">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>depth</h4>
|
||||||
|
<pre>private int depth</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="width">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>width</h4>
|
||||||
|
<pre>private int width</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="draws">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>draws</h4>
|
||||||
|
<pre>private int draws</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemDesk-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-int-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemDesk</h4>
|
||||||
|
<pre>ItemDesk(int idl,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ic,
|
||||||
|
int drawcount,
|
||||||
|
int widthcount,
|
||||||
|
int depthcount)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>idl</code> - ID of the item.</dd>
|
||||||
|
<dd><code>tw</code> - Wood Type of the item.</dd>
|
||||||
|
<dd><code>ic</code> - Icon of the item.</dd>
|
||||||
|
<dd><code>drawcount</code> - Amount of draws</dd>
|
||||||
|
<dd><code>widthcount</code> - Width of the desk.</dd>
|
||||||
|
<dd><code>depthcount</code> - Depth of the desk.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getHeight--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getHeight</h4>
|
||||||
|
<pre>public int getHeight()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getDepth--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getDepth</h4>
|
||||||
|
<pre>public int getDepth()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getWidth--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getWidth</h4>
|
||||||
|
<pre>public int getWidth()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getDraws--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getDraws</h4>
|
||||||
|
<pre>public int getDraws()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setDepth-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setDepth</h4>
|
||||||
|
<pre>public boolean setDepth(int d)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setWidth-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setWidth</h4>
|
||||||
|
<pre>public boolean setWidth(int w)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setDraws-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setDraws</h4>
|
||||||
|
<pre>public boolean setDraws(int d)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getUnits--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getUnits</h4>
|
||||||
|
<pre>public int getUnits()</pre>
|
||||||
|
<div class="block">Does nothing.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getUnits--">getUnits</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>0</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getPrice--">getPrice</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>The price of the item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemDesk.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemDesk.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemDesk.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
450
dist/javadoc/rofaapp/ItemIcon.html
vendored
Normal file
@ -0,0 +1,450 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemIcon</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemIcon";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemIcon.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemIcon.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemIcon.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemIcon" class="title">Class ItemIcon</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemIcon</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemIcon</span>
|
||||||
|
extends java.lang.Object</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#CHAIR_ICON_1">CHAIR_ICON_1</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#CHAIR_ICON_2">CHAIR_ICON_2</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon[]</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON">DESK_ICON</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_1">DESK_ICON_1</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_2">DESK_ICON_2</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_3">DESK_ICON_3</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#DESK_ICON_4">DESK_ICON_4</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#TABLE_ICON_1">TABLE_ICON_1</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#TABLE_ICON_2">TABLE_ICON_2</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#ItemIcon--">ItemIcon</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#resize-javax.swing.ImageIcon-java.awt.Dimension-">resize</a></span>(javax.swing.ImageIcon i,
|
||||||
|
java.awt.Dimension d)</code>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>static javax.swing.ImageIcon</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemIcon.html#resize-javax.swing.ImageIcon-int-int-">resize</a></span>(javax.swing.ImageIcon i,
|
||||||
|
int x,
|
||||||
|
int y)</code>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="CHAIR_ICON_1">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>CHAIR_ICON_1</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon CHAIR_ICON_1</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="CHAIR_ICON_2">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>CHAIR_ICON_2</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon CHAIR_ICON_2</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="DESK_ICON_1">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>DESK_ICON_1</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon DESK_ICON_1</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="DESK_ICON_2">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>DESK_ICON_2</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon DESK_ICON_2</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="DESK_ICON_3">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>DESK_ICON_3</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon DESK_ICON_3</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="DESK_ICON_4">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>DESK_ICON_4</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon DESK_ICON_4</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="DESK_ICON">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>DESK_ICON</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon[] DESK_ICON</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="TABLE_ICON_1">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>TABLE_ICON_1</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon TABLE_ICON_1</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="TABLE_ICON_2">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>TABLE_ICON_2</h4>
|
||||||
|
<pre>public static final javax.swing.ImageIcon TABLE_ICON_2</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemIcon--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemIcon</h4>
|
||||||
|
<pre>public ItemIcon()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="resize-javax.swing.ImageIcon-int-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>resize</h4>
|
||||||
|
<pre>public static javax.swing.ImageIcon resize(javax.swing.ImageIcon i,
|
||||||
|
int x,
|
||||||
|
int y)</pre>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>i</code> - The ImageIcon.</dd>
|
||||||
|
<dd><code>x</code> - The X size of the new image,</dd>
|
||||||
|
<dd><code>y</code> - The Y size of the new image.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>The resized image.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="resize-javax.swing.ImageIcon-java.awt.Dimension-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>resize</h4>
|
||||||
|
<pre>public static javax.swing.ImageIcon resize(javax.swing.ImageIcon i,
|
||||||
|
java.awt.Dimension d)</pre>
|
||||||
|
<div class="block">Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>i</code> - The ImageIcon.</dd>
|
||||||
|
<dd><code>d</code> - Dimension of the desired image.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>The resized image.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemIcon.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemIcon.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemIcon.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
554
dist/javadoc/rofaapp/ItemOrder.html
vendored
Normal file
@ -0,0 +1,554 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemOrder</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemOrder";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemOrder.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemOrder.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemOrder.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemOrder" class="title">Class ItemOrder</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemOrder</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemOrder</span>
|
||||||
|
extends java.lang.Object
|
||||||
|
implements java.io.Serializable</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemOrder">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#arraySize">arraySize</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#currentSize">currentSize</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a>[]</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#orderList">orderList</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#ItemOrder--">ItemOrder</a></span>()</code>
|
||||||
|
<div class="block">Creates an empty item order of <a href="../rofaapp/ItemOrder.html#arraySize"><code>arraySize</code></a> items.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#add-rofaapp.Furniture-int-boolean-">add</a></span>(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f,
|
||||||
|
int index,
|
||||||
|
boolean force)</code>
|
||||||
|
<div class="block">Adds an item furniture to the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> at the given index.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#del-int-">del</a></span>(int index)</code>
|
||||||
|
<div class="block">Deletes (nulls) a furniture object in <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> where the given index is.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#deleteAll--">deleteAll</a></span>()</code>
|
||||||
|
<div class="block">Deletes (nulls) everything in the list.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i3" class="rowColor">
|
||||||
|
<td class="colFirst"><code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#get-int-">get</a></span>(int index)</code>
|
||||||
|
<div class="block">Gets the furniture object of the given index in the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> if valid.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i4" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getCurrentSize--">getCurrentSize</a></span>()</code>
|
||||||
|
<div class="block">Current array size.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i5" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getFirstAvailable--">getFirstAvailable</a></span>()</code>
|
||||||
|
<div class="block">Gets the index of the first available space within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i6" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getFreeSpace--">getFreeSpace</a></span>()</code>
|
||||||
|
<div class="block">Gets the number of free spaces within the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i7" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getMaxSize--">getMaxSize</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i8" class="altColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#getPrice--">getPrice</a></span>()</code>
|
||||||
|
<div class="block">Gets the price of all the items within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i9" class="rowColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#isValidIndex-int-">isValidIndex</a></span>(int i)</code>
|
||||||
|
<div class="block">Checks if the given number is a valid index (0 to <a href="../rofaapp/ItemOrder.html#arraySize"><code>arraySize</code></a>).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i10" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemOrder.html#normalise--">normalise</a></span>()</code>
|
||||||
|
<div class="block">Shifts all objects within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> so that there are no gaps in between items in the array.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="arraySize">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>arraySize</h4>
|
||||||
|
<pre>private final transient int arraySize</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemOrder.arraySize">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="currentSize">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentSize</h4>
|
||||||
|
<pre>private int currentSize</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="orderList">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>orderList</h4>
|
||||||
|
<pre>private <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a>[] orderList</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemOrder--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemOrder</h4>
|
||||||
|
<pre>ItemOrder()</pre>
|
||||||
|
<div class="block">Creates an empty item order of <a href="../rofaapp/ItemOrder.html#arraySize"><code>arraySize</code></a> items.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getFirstAvailable--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getFirstAvailable</h4>
|
||||||
|
<pre>public int getFirstAvailable()</pre>
|
||||||
|
<div class="block">Gets the index of the first available space within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>. (-1 if full).</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Integer of the first empty index. (-1 if full)</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="get-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>get</h4>
|
||||||
|
<pre>public <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> get(int index)</pre>
|
||||||
|
<div class="block">Gets the furniture object of the given index in the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> if valid. (Else, returns null).</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>index</code> - Index of the item within the array.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Furniture item of the given index.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="add-rofaapp.Furniture-int-boolean-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>add</h4>
|
||||||
|
<pre>public void add(<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f,
|
||||||
|
int index,
|
||||||
|
boolean force)</pre>
|
||||||
|
<div class="block">Adds an item furniture to the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> at the given index.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>f</code> - Furniture object to add.</dd>
|
||||||
|
<dd><code>index</code> - Index within the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> array.</dd>
|
||||||
|
<dd><code>force</code> - If a furniture object already exists there, passing this as true will overwrite it. If this is false, will just skip.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="del-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>del</h4>
|
||||||
|
<pre>public void del(int index)</pre>
|
||||||
|
<div class="block">Deletes (nulls) a furniture object in <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> where the given index is. Then shifts everything in the array into order again.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>index</code> - Index of item in the list that gets deleted.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="deleteAll--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>deleteAll</h4>
|
||||||
|
<pre>public void deleteAll()</pre>
|
||||||
|
<div class="block">Deletes (nulls) everything in the list.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getMaxSize--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getMaxSize</h4>
|
||||||
|
<pre>public int getMaxSize()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Max array size.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getCurrentSize--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getCurrentSize</h4>
|
||||||
|
<pre>public int getCurrentSize()</pre>
|
||||||
|
<div class="block">Current array size. (Will always be <a href="../rofaapp/ItemOrder.html#arraySize"><code>arraySize</code></a>).</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Int of the size of the array.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getFreeSpace--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getFreeSpace</h4>
|
||||||
|
<pre>public int getFreeSpace()</pre>
|
||||||
|
<div class="block">Gets the number of free spaces within the <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Int of the number of spaces in the array available.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<div class="block">Gets the price of all the items within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a>.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>A double of the price of all the items.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="isValidIndex-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>isValidIndex</h4>
|
||||||
|
<pre>public boolean isValidIndex(int i)</pre>
|
||||||
|
<div class="block">Checks if the given number is a valid index (0 to <a href="../rofaapp/ItemOrder.html#arraySize"><code>arraySize</code></a>).</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>i</code> - Index to check if it's valid.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>True/False based on if it's valid or not.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="normalise--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>normalise</h4>
|
||||||
|
<pre>public void normalise()</pre>
|
||||||
|
<div class="block">Shifts all objects within <a href="../rofaapp/ItemOrder.html#orderList"><code>orderList</code></a> so that there are no gaps in between items in the array.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemOrder.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemOrder.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemOrder.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
368
dist/javadoc/rofaapp/ItemTable.html
vendored
Normal file
@ -0,0 +1,368 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemTable</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemTable";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTable.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTable.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTable.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemTable" class="title">Class ItemTable</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemTable</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>Direct Known Subclasses:</dt>
|
||||||
|
<dd><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a>, <a href="../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public abstract class <span class="typeNameLabel">ItemTable</span>
|
||||||
|
extends <a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemTable">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#diameter">diameter</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#ItemTable--">ItemTable</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#getDiameter--">getDiameter</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#getUnits--">getUnits</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTable.html#setDiameter-int-">setDiameter</a></span>(int d)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getPrice--">getPrice</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="diameter">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>diameter</h4>
|
||||||
|
<pre>private int diameter</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemTable--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemTable</h4>
|
||||||
|
<pre>public ItemTable()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getDiameter--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getDiameter</h4>
|
||||||
|
<pre>public int getDiameter()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setDiameter-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setDiameter</h4>
|
||||||
|
<pre>public boolean setDiameter(int d)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>d</code> - Diameter of the table.</dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Returns if the value is valid (does this within the form).</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getUnits--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getUnits</h4>
|
||||||
|
<pre>public int getUnits()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getUnits--">getUnits</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd><a href="../rofaapp/ItemTable.html#diameter"><code>diameter</code></a>^2</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTable.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTable.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTable.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
359
dist/javadoc/rofaapp/ItemTableChrome.html
vendored
Normal file
@ -0,0 +1,359 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemTableChrome</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemTableChrome";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTableChrome.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTableChrome.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableChrome.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemTableChrome" class="title">Class ItemTableChrome</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp">rofaapp.ItemTable</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemTableChrome</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemTableChrome</span>
|
||||||
|
extends <a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemTableChrome">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#basePrice">basePrice</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#ItemTableChrome-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableChrome</a></span>(int id,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableChrome.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.ItemTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></h3>
|
||||||
|
<code><a href="../rofaapp/ItemTable.html#getDiameter--">getDiameter</a>, <a href="../rofaapp/ItemTable.html#getUnits--">getUnits</a>, <a href="../rofaapp/ItemTable.html#setDiameter-int-">setDiameter</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="basePrice">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>basePrice</h4>
|
||||||
|
<pre>private final double basePrice</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemTableChrome.basePrice">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemTableChrome-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemTableChrome</h4>
|
||||||
|
<pre>ItemTableChrome(int id,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>id</code> - ID of the item (doesn't have to be unique)</dd>
|
||||||
|
<dd><code>tw</code> - Wood type of the item.</dd>
|
||||||
|
<dd><code>ii</code> - Icon of the item.</dd>
|
||||||
|
<dd><code>d</code> - Diameter of the item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getPrice--">getPrice</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTableChrome.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTableChrome.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableChrome.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
364
dist/javadoc/rofaapp/ItemTableWood.html
vendored
Normal file
@ -0,0 +1,364 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ItemTableWood</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ItemTableWood";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTableWood.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTableWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ItemTableWood" class="title">Class ItemTableWood</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li><a href="../rofaapp/ItemTable.html" title="class in rofaapp">rofaapp.ItemTable</a></li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ItemTableWood</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ItemTableWood</span>
|
||||||
|
extends <a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.ItemTableWood">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#basePrice">basePrice</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#ItemTableWood-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableWood</a></span>(int id,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</code>
|
||||||
|
<div class="block">Constructor for the Wood Table.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ItemTableWood.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.ItemTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></h3>
|
||||||
|
<code><a href="../rofaapp/ItemTable.html#getDiameter--">getDiameter</a>, <a href="../rofaapp/ItemTable.html#getUnits--">getUnits</a>, <a href="../rofaapp/ItemTable.html#setDiameter-int-">setDiameter</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></h3>
|
||||||
|
<code><a href="../rofaapp/Furniture.html#getIcon--">getIcon</a>, <a href="../rofaapp/Furniture.html#getId--">getId</a>, <a href="../rofaapp/Furniture.html#getName--">getName</a>, <a href="../rofaapp/Furniture.html#getWood--">getWood</a>, <a href="../rofaapp/Furniture.html#setIcon-javax.swing.ImageIcon-">setIcon</a>, <a href="../rofaapp/Furniture.html#setId-int-">setId</a>, <a href="../rofaapp/Furniture.html#setName-java.lang.String-">setName</a>, <a href="../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="basePrice">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>basePrice</h4>
|
||||||
|
<pre>private final double basePrice</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../constant-values.html#rofaapp.ItemTableWood.basePrice">Constant Field Values</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ItemTableWood-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ItemTableWood</h4>
|
||||||
|
<pre>ItemTableWood(int id,
|
||||||
|
<a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</pre>
|
||||||
|
<div class="block">Constructor for the Wood Table.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>id</code> - Given ID (doesn't have to be unique).</dd>
|
||||||
|
<dd><code>tw</code> - Type of wood the item is.</dd>
|
||||||
|
<dd><code>ii</code> - Icon of the item.</dd>
|
||||||
|
<dd><code>d</code> - Diameter of the item.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code><a href="../rofaapp/Furniture.html#getPrice--">getPrice</a></code> in class <code><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd>Price of the table</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ItemTableWood.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ItemTableWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
838
dist/javadoc/rofaapp/MainWindow.html
vendored
Normal file
@ -0,0 +1,838 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>MainWindow</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="MainWindow";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/MainWindow.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/MainWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="MainWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul class="subNavList">
|
||||||
|
<li>Summary: </li>
|
||||||
|
<li><a href="#nested.classes.inherited.from.class.javax.swing.JFrame">Nested</a> | </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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class MainWindow" class="title">Class MainWindow</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Component</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Container</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Window</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.awt.Frame</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>javax.swing.JFrame</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.MainWindow</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.awt.event.ActionListener, java.awt.event.MouseListener, java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, java.util.EventListener, javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">MainWindow</span>
|
||||||
|
extends javax.swing.JFrame
|
||||||
|
implements java.awt.event.ActionListener, java.awt.event.MouseListener</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.MainWindow">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.class.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested Class Summary</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.javax.swing.JFrame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class javax.swing.JFrame</h3>
|
||||||
|
<code>javax.swing.JFrame.AccessibleJFrame</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Frame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Frame</h3>
|
||||||
|
<code>java.awt.Frame.AccessibleAWTFrame</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Window">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Window</h3>
|
||||||
|
<code>java.awt.Window.AccessibleAWTWindow, java.awt.Window.Type</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Container">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Container</h3>
|
||||||
|
<code>java.awt.Container.AccessibleAWTContainer</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="nested.classes.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Nested classes/interfaces inherited from class java.awt.Component</h3>
|
||||||
|
<code>java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy</code></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#currentOrder">currentOrder</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private int</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#currentSelected">currentSelected</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#gridPanel">gridPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JLabel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#gridTotalPriceLabel">gridTotalPriceLabel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.JPanel[][]</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#imagepanels">imagepanels</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#itemSummaryPanel">itemSummaryPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuAddItemButton">menuAddItemButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuClearButton">menuClearButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuLoadButton">menuLoadButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuPanel">menuPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuSaveButton">menuSaveButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JButton</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#menuSummaryButton">menuSummaryButton</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private javax.swing.JPanel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#summaryPanel">summaryPanel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>(package private) javax.swing.JLabel</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#summaryTitleLabel">summaryTitleLabel</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.javax.swing.JFrame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class javax.swing.JFrame</h3>
|
||||||
|
<code>accessibleContext, EXIT_ON_CLOSE, rootPane, rootPaneCheckingEnabled</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.Frame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class java.awt.Frame</h3>
|
||||||
|
<code>CROSSHAIR_CURSOR, DEFAULT_CURSOR, E_RESIZE_CURSOR, HAND_CURSOR, ICONIFIED, MAXIMIZED_BOTH, MAXIMIZED_HORIZ, MAXIMIZED_VERT, MOVE_CURSOR, N_RESIZE_CURSOR, NE_RESIZE_CURSOR, NORMAL, NW_RESIZE_CURSOR, S_RESIZE_CURSOR, SE_RESIZE_CURSOR, SW_RESIZE_CURSOR, TEXT_CURSOR, W_RESIZE_CURSOR, WAIT_CURSOR</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from class java.awt.Component</h3>
|
||||||
|
<code>BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.javax.swing.WindowConstants">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from interface javax.swing.WindowConstants</h3>
|
||||||
|
<code>DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, HIDE_ON_CLOSE</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="fields.inherited.from.class.java.awt.image.ImageObserver">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Fields inherited from interface java.awt.image.ImageObserver</h3>
|
||||||
|
<code>ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH</code></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#MainWindow--">MainWindow</a></span>()</code>
|
||||||
|
<div class="block">Constructor that initialises the window and it's properties (such as title, size, and it's layout).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#actionPerformed-java.awt.event.ActionEvent-">actionPerformed</a></span>(java.awt.event.ActionEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#changeSelectedPanel-int-int-int-">changeSelectedPanel</a></span>(int x,
|
||||||
|
int y,
|
||||||
|
int index)</code>
|
||||||
|
<div class="block">Changes the current selected, and highlighed, <a href="../rofaapp/MainWindow.html#imagepanels"><code>imagepanels</code></a>.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#initPanels--">initPanels</a></span>()</code>
|
||||||
|
<div class="block">Initialises all four panels used in the main window (creates instances of them, their sizes and adds them to the master panel).</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i3" class="rowColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseClicked-java.awt.event.MouseEvent-">mouseClicked</a></span>(java.awt.event.MouseEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i4" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseEntered-java.awt.event.MouseEvent-">mouseEntered</a></span>(java.awt.event.MouseEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i5" class="rowColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseExited-java.awt.event.MouseEvent-">mouseExited</a></span>(java.awt.event.MouseEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i6" class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mousePressed-java.awt.event.MouseEvent-">mousePressed</a></span>(java.awt.event.MouseEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i7" class="rowColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#mouseReleased-java.awt.event.MouseEvent-">mouseReleased</a></span>(java.awt.event.MouseEvent e)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i8" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-">setItemPanel</a></span>(javax.swing.JPanel j,
|
||||||
|
<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Sets the given panel to the given furniture object, meaning the panel contains the icon of the given furniture.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i9" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateItemOrder--">updateItemOrder</a></span>()</code>
|
||||||
|
<div class="block">Iterates through each of the panels within the <a href="../rofaapp/MainWindow.html#gridPanel"><code>gridPanel</code></a> and calls <a href="../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-"><code>setItemPanel(JPanel, Furniture)</code></a> to update each panel with the correct image and data.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i10" class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateItemSummaryPanel-int-">updateItemSummaryPanel</a></span>(int index)</code>
|
||||||
|
<div class="block">Changes the elements within the <a href="../rofaapp/MainWindow.html#itemSummaryPanel"><code>itemSummaryPanel</code></a> depending on what the user has clicked.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i11" class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/MainWindow.html#updateSummaryPanel--">updateSummaryPanel</a></span>()</code>
|
||||||
|
<div class="block">Updates and redraws the total price label at the bottom of the window.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.javax.swing.JFrame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class javax.swing.JFrame</h3>
|
||||||
|
<code>addImpl, createRootPane, frameInit, getAccessibleContext, getContentPane, getDefaultCloseOperation, getGlassPane, getGraphics, getJMenuBar, getLayeredPane, getRootPane, getTransferHandler, isDefaultLookAndFeelDecorated, isRootPaneCheckingEnabled, paramString, processWindowEvent, remove, repaint, setContentPane, setDefaultCloseOperation, setDefaultLookAndFeelDecorated, setGlassPane, setIconImage, setJMenuBar, setLayeredPane, setLayout, setRootPane, setRootPaneCheckingEnabled, setTransferHandler, update</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Frame">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Frame</h3>
|
||||||
|
<code>addNotify, getCursorType, getExtendedState, getFrames, getIconImage, getMaximizedBounds, getMenuBar, getState, getTitle, isResizable, isUndecorated, remove, removeNotify, setBackground, setCursor, setExtendedState, setMaximizedBounds, setMenuBar, setOpacity, setResizable, setShape, setState, setTitle, setUndecorated</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Window">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Window</h3>
|
||||||
|
<code>addPropertyChangeListener, addPropertyChangeListener, addWindowFocusListener, addWindowListener, addWindowStateListener, applyResourceBundle, applyResourceBundle, createBufferStrategy, createBufferStrategy, dispose, getBackground, getBufferStrategy, getFocusableWindowState, getFocusCycleRootAncestor, getFocusOwner, getFocusTraversalKeys, getIconImages, getInputContext, getListeners, getLocale, getModalExclusionType, getMostRecentFocusOwner, getOpacity, getOwnedWindows, getOwner, getOwnerlessWindows, getShape, getToolkit, getType, getWarningString, getWindowFocusListeners, getWindowListeners, getWindows, getWindowStateListeners, hide, isActive, isAlwaysOnTop, isAlwaysOnTopSupported, isAutoRequestFocus, isFocusableWindow, isFocusCycleRoot, isFocused, isLocationByPlatform, isOpaque, isShowing, isValidateRoot, pack, paint, postEvent, processEvent, processWindowFocusEvent, processWindowStateEvent, removeWindowFocusListener, removeWindowListener, removeWindowStateListener, reshape, setAlwaysOnTop, setAutoRequestFocus, setBounds, setBounds, setCursor, setFocusableWindowState, setFocusCycleRoot, setIconImages, setLocation, setLocation, setLocationByPlatform, setLocationRelativeTo, setMinimumSize, setModalExclusionType, setSize, setSize, setType, setVisible, show, toBack, toFront</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Container">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Container</h3>
|
||||||
|
<code>add, add, add, add, add, addContainerListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalPolicy, getInsets, getLayout, getMaximumSize, getMinimumSize, getMousePosition, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusTraversalKeys, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setFont, transferFocusDownCycle, validate, validateTree</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.Component">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from class java.awt.Component</h3>
|
||||||
|
<code>action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, disable, disableEvents, dispatchEvent, enable, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBaseline, getBaselineResizeBehavior, getBounds, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocation, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, prepareImage, prepareImage, printAll, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, processMouseWheelEvent, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resize, resize, revalidate, setComponentOrientation, setDropTarget, setEnabled, setFocusable, setFocusTraversalKeysEnabled, setForeground, setIgnoreRepaint, setLocale, setMaximumSize, setName, setPreferredSize, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle</code></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="methods.inherited.from.class.java.awt.MenuContainer">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Methods inherited from interface java.awt.MenuContainer</h3>
|
||||||
|
<code>getFont, postEvent</code></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="currentOrder">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentOrder</h4>
|
||||||
|
<pre>private <a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> currentOrder</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="currentSelected">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentSelected</h4>
|
||||||
|
<pre>private int currentSelected</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuPanel</h4>
|
||||||
|
<pre>private javax.swing.JPanel menuPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="gridPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>gridPanel</h4>
|
||||||
|
<pre>private javax.swing.JPanel gridPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="summaryPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>summaryPanel</h4>
|
||||||
|
<pre>private javax.swing.JPanel summaryPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="itemSummaryPanel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>itemSummaryPanel</h4>
|
||||||
|
<pre>private javax.swing.JPanel itemSummaryPanel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="imagepanels">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>imagepanels</h4>
|
||||||
|
<pre>private javax.swing.JPanel[][] imagepanels</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="gridTotalPriceLabel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>gridTotalPriceLabel</h4>
|
||||||
|
<pre>javax.swing.JLabel gridTotalPriceLabel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="summaryTitleLabel">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>summaryTitleLabel</h4>
|
||||||
|
<pre>javax.swing.JLabel summaryTitleLabel</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuAddItemButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuAddItemButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuAddItemButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuSaveButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuSaveButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuSaveButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuLoadButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuLoadButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuLoadButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuClearButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuClearButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuClearButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="menuSummaryButton">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuSummaryButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuSummaryButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="MainWindow--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>MainWindow</h4>
|
||||||
|
<pre>MainWindow()</pre>
|
||||||
|
<div class="block">Constructor that initialises the window and it's properties (such as title, size, and it's layout). Calls <a href="../rofaapp/MainWindow.html#initPanels--"><code>initPanels()</code></a> to initialise the panels shown in the grid. Also creates a new instance of the itemorder.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="initPanels--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>initPanels</h4>
|
||||||
|
<pre>private void initPanels()</pre>
|
||||||
|
<div class="block">Initialises all four panels used in the main window (creates instances of them, their sizes and adds them to the master panel).</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="updateItemOrder--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>updateItemOrder</h4>
|
||||||
|
<pre>private void updateItemOrder()</pre>
|
||||||
|
<div class="block">Iterates through each of the panels within the <a href="../rofaapp/MainWindow.html#gridPanel"><code>gridPanel</code></a> and calls <a href="../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-"><code>setItemPanel(JPanel, Furniture)</code></a> to update each panel with the correct image and data. After the iteration, calls <a href="../rofaapp/MainWindow.html#updateSummaryPanel--"><code>updateSummaryPanel()</code></a> to finalise.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="setItemPanel-javax.swing.JPanel-rofaapp.Furniture-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>setItemPanel</h4>
|
||||||
|
<pre>private void setItemPanel(javax.swing.JPanel j,
|
||||||
|
<a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</pre>
|
||||||
|
<div class="block">Sets the given panel to the given furniture object, meaning the panel contains the icon of the given furniture.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>j</code> - JPanel to set.</dd>
|
||||||
|
<dd><code>f</code> - Furniture to set.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="changeSelectedPanel-int-int-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>changeSelectedPanel</h4>
|
||||||
|
<pre>private void changeSelectedPanel(int x,
|
||||||
|
int y,
|
||||||
|
int index)</pre>
|
||||||
|
<div class="block">Changes the current selected, and highlighed, <a href="../rofaapp/MainWindow.html#imagepanels"><code>imagepanels</code></a>.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>x</code> - X coordinate of the <a href="../rofaapp/MainWindow.html#imagepanels"><code>imagepanels</code></a>.</dd>
|
||||||
|
<dd><code>y</code> - Y coordinate of the <a href="../rofaapp/MainWindow.html#imagepanels"><code>imagepanels</code></a>.</dd>
|
||||||
|
<dd><code>index</code> - The index of the item in the <a href="../rofaapp/MainWindow.html#currentOrder"><code>currentOrder</code></a>.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="updateSummaryPanel--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>updateSummaryPanel</h4>
|
||||||
|
<pre>private void updateSummaryPanel()</pre>
|
||||||
|
<div class="block">Updates and redraws the total price label at the bottom of the window.</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="updateItemSummaryPanel-int-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>updateItemSummaryPanel</h4>
|
||||||
|
<pre>private void updateItemSummaryPanel(int index)</pre>
|
||||||
|
<div class="block">Changes the elements within the <a href="../rofaapp/MainWindow.html#itemSummaryPanel"><code>itemSummaryPanel</code></a> depending on what the user has clicked.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
|
<dd><code>index</code> - The index of the panel/item within the order.</dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="actionPerformed-java.awt.event.ActionEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>actionPerformed</h4>
|
||||||
|
<pre>public void actionPerformed(java.awt.event.ActionEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>actionPerformed</code> in interface <code>java.awt.event.ActionListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="mouseClicked-java.awt.event.MouseEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>mouseClicked</h4>
|
||||||
|
<pre>public void mouseClicked(java.awt.event.MouseEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>mouseClicked</code> in interface <code>java.awt.event.MouseListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="mousePressed-java.awt.event.MouseEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>mousePressed</h4>
|
||||||
|
<pre>public void mousePressed(java.awt.event.MouseEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>mousePressed</code> in interface <code>java.awt.event.MouseListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="mouseReleased-java.awt.event.MouseEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>mouseReleased</h4>
|
||||||
|
<pre>public void mouseReleased(java.awt.event.MouseEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>mouseReleased</code> in interface <code>java.awt.event.MouseListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="mouseEntered-java.awt.event.MouseEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>mouseEntered</h4>
|
||||||
|
<pre>public void mouseEntered(java.awt.event.MouseEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>mouseEntered</code> in interface <code>java.awt.event.MouseListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="mouseExited-java.awt.event.MouseEvent-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>mouseExited</h4>
|
||||||
|
<pre>public void mouseExited(java.awt.event.MouseEvent e)</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
|
||||||
|
<dd><code>mouseExited</code> in interface <code>java.awt.event.MouseListener</code></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/MainWindow.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/MainWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="MainWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul class="subNavList">
|
||||||
|
<li>Summary: </li>
|
||||||
|
<li><a href="#nested.classes.inherited.from.class.javax.swing.JFrame">Nested</a> | </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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
270
dist/javadoc/rofaapp/ROFCMain.html
vendored
Normal file
@ -0,0 +1,270 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ROFCMain</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="ROFCMain";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"i0":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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ROFCMain.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/TypeWood.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ROFCMain.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ROFCMain.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class ROFCMain" class="title">Class ROFCMain</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.ROFCMain</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">ROFCMain</span>
|
||||||
|
extends java.lang.Object</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/ROFCMain.html#ROFCMain--">ROFCMain</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>static void</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/ROFCMain.html#main-java.lang.String:A-">main</a></span>(java.lang.String[] args)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="ROFCMain--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>ROFCMain</h4>
|
||||||
|
<pre>public ROFCMain()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="main-java.lang.String:A-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>main</h4>
|
||||||
|
<pre>public static void main(java.lang.String[] args)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/ROFCMain.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li><a href="../rofaapp/TypeWood.html" title="class in rofaapp"><span class="typeNameLink">Next Class</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/ROFCMain.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ROFCMain.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
391
dist/javadoc/rofaapp/TypeWood.html
vendored
Normal file
@ -0,0 +1,391 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>TypeWood</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="TypeWood";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
var methods = {"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";
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/TypeWood.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li>Next Class</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/TypeWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="TypeWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</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 name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<!-- ======== START OF CLASS DATA ======== -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="subTitle">rofaapp</div>
|
||||||
|
<h2 title="Class TypeWood" class="title">Class TypeWood</h2>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>java.lang.Object</li>
|
||||||
|
<li>
|
||||||
|
<ul class="inheritance">
|
||||||
|
<li>rofaapp.TypeWood</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="description">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<dl>
|
||||||
|
<dt>All Implemented Interfaces:</dt>
|
||||||
|
<dd>java.io.Serializable</dd>
|
||||||
|
</dl>
|
||||||
|
<hr>
|
||||||
|
<br>
|
||||||
|
<pre>public class <span class="typeNameLabel">TypeWood</span>
|
||||||
|
extends java.lang.Object
|
||||||
|
implements java.io.Serializable</pre>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
|
<dd><a href="../serialized-form.html#rofaapp.TypeWood">Serialized Form</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="summary">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- =========== FIELD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private java.lang.String</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#name">name</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#price">price</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#WOOD_OAK">WOOD_OAK</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#WOOD_WALNUT">WOOD_WALNUT</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#TypeWood-java.lang.String-double-">TypeWood</a></span>(java.lang.String n,
|
||||||
|
double p)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========== METHOD SUMMARY =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.summary">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Summary</h3>
|
||||||
|
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
|
||||||
|
<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="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr id="i0" class="altColor">
|
||||||
|
<td class="colFirst"><code>java.lang.String</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#getName--">getName</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i1" class="rowColor">
|
||||||
|
<td class="colFirst"><code>double</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#getPrice--">getPrice</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr id="i2" class="altColor">
|
||||||
|
<td class="colFirst"><code>java.lang.String</code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../rofaapp/TypeWood.html#toString--">toString</a></span>()</code>
|
||||||
|
<div class="block">Gets the name of the wood type.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="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>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="details">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<!-- ============ FIELD DETAIL =========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="field.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Field Detail</h3>
|
||||||
|
<a name="name">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>name</h4>
|
||||||
|
<pre>private java.lang.String name</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="price">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>price</h4>
|
||||||
|
<pre>private double price</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="WOOD_OAK">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>WOOD_OAK</h4>
|
||||||
|
<pre>public static final <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> WOOD_OAK</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="WOOD_WALNUT">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>WOOD_WALNUT</h4>
|
||||||
|
<pre>public static final <a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> WOOD_WALNUT</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="constructor.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Constructor Detail</h3>
|
||||||
|
<a name="TypeWood-java.lang.String-double-">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>TypeWood</h4>
|
||||||
|
<pre>TypeWood(java.lang.String n,
|
||||||
|
double p)</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- ============ METHOD DETAIL ========== -->
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="method.detail">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Method Detail</h3>
|
||||||
|
<a name="getName--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getName</h4>
|
||||||
|
<pre>public java.lang.String getName()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="getPrice--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>getPrice</h4>
|
||||||
|
<pre>public double getPrice()</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a name="toString--">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="blockListLast">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>toString</h4>
|
||||||
|
<pre>public java.lang.String toString()</pre>
|
||||||
|
<div class="block">Gets the name of the wood type.</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
|
||||||
|
<dd><code>toString</code> in class <code>java.lang.Object</code></dd>
|
||||||
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
|
<dd><a href="../rofaapp/TypeWood.html#name"><code>name</code></a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- ========= END OF CLASS DATA ========= -->
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li class="navBarCell1Rev">Class</li>
|
||||||
|
<li><a href="class-use/TypeWood.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">Prev Class</span></a></li>
|
||||||
|
<li>Next Class</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/TypeWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="TypeWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</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 name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/AddItemWindow.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.AddItemWindow</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.AddItemWindow";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/AddItemWindow.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/AddItemWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="AddItemWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.AddItemWindow" class="title">Uses of Class<br>rofaapp.AddItemWindow</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.AddItemWindow</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/AddItemWindow.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/AddItemWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="AddItemWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
249
dist/javadoc/rofaapp/class-use/Furniture.html
vendored
Normal file
@ -0,0 +1,249 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.Furniture</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.Furniture";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/Furniture.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/Furniture.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="Furniture.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.Furniture" class="title">Uses of Class<br>rofaapp.Furniture</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Uses of <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></h3>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
|
||||||
|
<caption><span>Subclasses of <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Class and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields in <a href="../../rofaapp/package-summary.html">rofaapp</a> declared as <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a>[]</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">ItemOrder.</span><code><span class="memberNameLink"><a href="../../rofaapp/ItemOrder.html#orderList">orderList</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
||||||
|
<caption><span>Methods in <a href="../../rofaapp/package-summary.html">rofaapp</a> that return <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code><a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">ItemOrder.</span><code><span class="memberNameLink"><a href="../../rofaapp/ItemOrder.html#get-int-">get</a></span>(int index)</code>
|
||||||
|
<div class="block">Gets the furniture object of the given index in the <a href="../../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> if valid.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
||||||
|
<caption><span>Methods in <a href="../../rofaapp/package-summary.html">rofaapp</a> with parameters of type <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>void</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">ItemOrder.</span><code><span class="memberNameLink"><a href="../../rofaapp/ItemOrder.html#add-rofaapp.Furniture-int-boolean-">add</a></span>(<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f,
|
||||||
|
int index,
|
||||||
|
boolean force)</code>
|
||||||
|
<div class="block">Adds an item furniture to the <a href="../../rofaapp/ItemOrder.html#orderList"><code>ItemOrder.orderList</code></a> at the given index.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static int</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">AddItemWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#getTabValue-rofaapp.Furniture-">getTabValue</a></span>(<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Simple method for giving an instance of furnature and getting back the tab index of the object in the window.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">AddItemWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#loadEditSettings-rofaapp.Furniture-">loadEditSettings</a></span>(<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Loads a given furniture item, and changes the window elements to the attributes of the given furniture item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private void</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">MainWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/MainWindow.html#setItemPanel-javax.swing.JPanel-rofaapp.Furniture-">setItemPanel</a></span>(javax.swing.JPanel j,
|
||||||
|
<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Sets the given panel to the given furniture object, meaning the panel contains the icon of the given furniture.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors in <a href="../../rofaapp/package-summary.html">rofaapp</a> with parameters of type <a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw,
|
||||||
|
int index,
|
||||||
|
<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Constructor used when editing an existing item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/Furniture.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/Furniture.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="Furniture.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ItemArmChair.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemArmChair</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemArmChair";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemArmChair.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemArmChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemArmChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemArmChair" class="title">Uses of Class<br>rofaapp.ItemArmChair</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ItemArmChair</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemArmChair.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemArmChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemArmChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
148
dist/javadoc/rofaapp/class-use/ItemChair.html
vendored
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemChair</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemChair";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemChair.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemChair" class="title">Uses of Class<br>rofaapp.ItemChair</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Uses of <a href="../../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></h3>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
|
||||||
|
<caption><span>Subclasses of <a href="../../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Class and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemChair.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemChair.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemChair.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ItemDesk.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemDesk</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemDesk";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemDesk.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemDesk.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemDesk.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemDesk" class="title">Uses of Class<br>rofaapp.ItemDesk</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ItemDesk</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemDesk.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemDesk.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemDesk.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ItemIcon.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemIcon</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemIcon";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemIcon.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemIcon.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemIcon.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemIcon" class="title">Uses of Class<br>rofaapp.ItemIcon</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ItemIcon</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemIcon.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemIcon.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemIcon.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
189
dist/javadoc/rofaapp/class-use/ItemOrder.html
vendored
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemOrder</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemOrder";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemOrder.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemOrder.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemOrder" class="title">Uses of Class<br>rofaapp.ItemOrder</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Uses of <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></h3>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields in <a href="../../rofaapp/package-summary.html">rofaapp</a> declared as <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">MainWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/MainWindow.html#currentOrder">currentOrder</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">AddItemWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#order">order</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
||||||
|
<caption><span>Methods in <a href="../../rofaapp/package-summary.html">rofaapp</a> that return <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code><a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">AddItemWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#getUpdatedOrder--">getUpdatedOrder</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors in <a href="../../rofaapp/package-summary.html">rofaapp</a> with parameters of type <a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw)</code>
|
||||||
|
<div class="block">Constructor used when adding a new item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw,
|
||||||
|
int index,
|
||||||
|
<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Constructor used when editing an existing item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemOrder.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemOrder.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
152
dist/javadoc/rofaapp/class-use/ItemTable.html
vendored
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemTable</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemTable";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTable.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTable.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTable.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemTable" class="title">Uses of Class<br>rofaapp.ItemTable</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Uses of <a href="../../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></h3>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
|
||||||
|
<caption><span>Subclasses of <a href="../../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Class and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>class </code></td>
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTable.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTable.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTable.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ItemTableChrome.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemTableChrome</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemTableChrome";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTableChrome.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTableChrome.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableChrome.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemTableChrome" class="title">Uses of Class<br>rofaapp.ItemTableChrome</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ItemTableChrome</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTableChrome.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTableChrome.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableChrome.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ItemTableWood.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ItemTableWood</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ItemTableWood";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTableWood.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTableWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ItemTableWood" class="title">Uses of Class<br>rofaapp.ItemTableWood</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ItemTableWood</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ItemTableWood.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ItemTableWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ItemTableWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/MainWindow.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.MainWindow</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.MainWindow";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/MainWindow.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/MainWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="MainWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.MainWindow" class="title">Uses of Class<br>rofaapp.MainWindow</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.MainWindow</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/MainWindow.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/MainWindow.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="MainWindow.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
123
dist/javadoc/rofaapp/class-use/ROFCMain.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.ROFCMain</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.ROFCMain";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ROFCMain.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ROFCMain.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ROFCMain.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.ROFCMain" class="title">Uses of Class<br>rofaapp.ROFCMain</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">No usage of rofaapp.ROFCMain</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/ROFCMain.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/ROFCMain.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="ROFCMain.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
244
dist/javadoc/rofaapp/class-use/TypeWood.html
vendored
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:51 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Class rofaapp.TypeWood</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Class rofaapp.TypeWood";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/TypeWood.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/TypeWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="TypeWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h2 title="Uses of Class rofaapp.TypeWood" class="title">Uses of Class<br>rofaapp.TypeWood</h2>
|
||||||
|
</div>
|
||||||
|
<div class="classUseContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Uses of <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> in <a href="../../rofaapp/package-summary.html">rofaapp</a></h3>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
|
||||||
|
<caption><span>Fields in <a href="../../rofaapp/package-summary.html">rofaapp</a> declared as <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Field and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">Furniture.</span><code><span class="memberNameLink"><a href="../../rofaapp/Furniture.html#wood">wood</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>static <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">TypeWood.</span><code><span class="memberNameLink"><a href="../../rofaapp/TypeWood.html#WOOD_OAK">WOOD_OAK</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>static <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">TypeWood.</span><code><span class="memberNameLink"><a href="../../rofaapp/TypeWood.html#WOOD_WALNUT">WOOD_WALNUT</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><code>private <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[]</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">AddItemWindow.</span><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#woodTypes">woodTypes</a></span></code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
||||||
|
<caption><span>Methods in <a href="../../rofaapp/package-summary.html">rofaapp</a> that return <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code><a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">Furniture.</span><code><span class="memberNameLink"><a href="../../rofaapp/Furniture.html#getWood--">getWood</a></span>()</code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
||||||
|
<caption><span>Methods in <a href="../../rofaapp/package-summary.html">rofaapp</a> with parameters of type <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colFirst" scope="col">Modifier and Type</th>
|
||||||
|
<th class="colLast" scope="col">Method and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><code>boolean</code></td>
|
||||||
|
<td class="colLast"><span class="typeNameLabel">Furniture.</span><code><span class="memberNameLink"><a href="../../rofaapp/Furniture.html#setWood-rofaapp.TypeWood-">setWood</a></span>(<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> w)</code> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
|
||||||
|
<caption><span>Constructors in <a href="../../rofaapp/package-summary.html">rofaapp</a> with parameters of type <a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Constructor and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw)</code>
|
||||||
|
<div class="block">Constructor used when adding a new item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/AddItemWindow.html#AddItemWindow-int-rofaapp.ItemOrder-rofaapp.TypeWood:A-int-rofaapp.Furniture-">AddItemWindow</a></span>(int defaultPanel,
|
||||||
|
<a href="../../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> o,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] tw,
|
||||||
|
int index,
|
||||||
|
<a href="../../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> f)</code>
|
||||||
|
<div class="block">Constructor used when editing an existing item.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemArmChair.html#ItemArmChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemArmChair</a></span>(int i,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemChair.html#ItemChair-int-rofaapp.TypeWood-javax.swing.ImageIcon-">ItemChair</a></span>(int i,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon im)</code>
|
||||||
|
<div class="block">Full Constructor</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemDesk.html#ItemDesk-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-int-int-">ItemDesk</a></span>(int idl,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ic,
|
||||||
|
int drawcount,
|
||||||
|
int widthcount,
|
||||||
|
int depthcount)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableChrome.html#ItemTableChrome-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableChrome</a></span>(int id,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</code> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../rofaapp/ItemTableWood.html#ItemTableWood-int-rofaapp.TypeWood-javax.swing.ImageIcon-int-">ItemTableWood</a></span>(int id,
|
||||||
|
<a href="../../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> tw,
|
||||||
|
javax.swing.ImageIcon ii,
|
||||||
|
int d)</code>
|
||||||
|
<div class="block">Constructor for the Wood Table.</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li><a href="../../rofaapp/TypeWood.html" title="class in rofaapp">Class</a></li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="../../overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../../index.html?rofaapp/class-use/TypeWood.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="TypeWood.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
33
dist/javadoc/rofaapp/package-frame.html
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>rofaapp</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 class="bar"><a href="../rofaapp/package-summary.html" target="classFrame">rofaapp</a></h1>
|
||||||
|
<div class="indexContainer">
|
||||||
|
<h2 title="Classes">Classes</h2>
|
||||||
|
<ul title="Classes">
|
||||||
|
<li><a href="AddItemWindow.html" title="class in rofaapp" target="classFrame">AddItemWindow</a></li>
|
||||||
|
<li><a href="Furniture.html" title="class in rofaapp" target="classFrame">Furniture</a></li>
|
||||||
|
<li><a href="ItemArmChair.html" title="class in rofaapp" target="classFrame">ItemArmChair</a></li>
|
||||||
|
<li><a href="ItemChair.html" title="class in rofaapp" target="classFrame">ItemChair</a></li>
|
||||||
|
<li><a href="ItemDesk.html" title="class in rofaapp" target="classFrame">ItemDesk</a></li>
|
||||||
|
<li><a href="ItemIcon.html" title="class in rofaapp" target="classFrame">ItemIcon</a></li>
|
||||||
|
<li><a href="ItemOrder.html" title="class in rofaapp" target="classFrame">ItemOrder</a></li>
|
||||||
|
<li><a href="ItemTable.html" title="class in rofaapp" target="classFrame">ItemTable</a></li>
|
||||||
|
<li><a href="ItemTableChrome.html" title="class in rofaapp" target="classFrame">ItemTableChrome</a></li>
|
||||||
|
<li><a href="ItemTableWood.html" title="class in rofaapp" target="classFrame">ItemTableWood</a></li>
|
||||||
|
<li><a href="MainWindow.html" title="class in rofaapp" target="classFrame">MainWindow</a></li>
|
||||||
|
<li><a href="ROFCMain.html" title="class in rofaapp" target="classFrame">ROFCMain</a></li>
|
||||||
|
<li><a href="TypeWood.html" title="class in rofaapp" target="classFrame">TypeWood</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
189
dist/javadoc/rofaapp/package-summary.html
vendored
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>rofaapp</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="rofaapp";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li><a href="package-use.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev Package</li>
|
||||||
|
<li>Next Package</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-summary.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-summary.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 title="Package" class="title">Package rofaapp</h1>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
|
||||||
|
<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">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/AddItemWindow.html" title="class in rofaapp">AddItemWindow</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/Furniture.html" title="class in rofaapp">Furniture</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemArmChair.html" title="class in rofaapp">ItemArmChair</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemDesk.html" title="class in rofaapp">ItemDesk</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemIcon.html" title="class in rofaapp">ItemIcon</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp">ItemTableChrome</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ItemTableWood.html" title="class in rofaapp">ItemTableWood</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/MainWindow.html" title="class in rofaapp">MainWindow</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/ROFCMain.html" title="class in rofaapp">ROFCMain</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a href="../rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a></td>
|
||||||
|
<td class="colLast"> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li><a href="package-use.html">Use</a></li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev Package</li>
|
||||||
|
<li>Next Package</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-summary.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-summary.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
181
dist/javadoc/rofaapp/package-tree.html
vendored
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>rofaapp Class Hierarchy</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="rofaapp Class Hierarchy";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li class="navBarCell1Rev">Tree</li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-tree.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-tree.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="title">Hierarchy For Package rofaapp</h1>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<h2 title="Class Hierarchy">Class Hierarchy</h2>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.lang.Object
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Container
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Window (implements javax.accessibility.Accessible)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">java.awt.Dialog
|
||||||
|
<ul>
|
||||||
|
<li type="circle">javax.swing.JDialog (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/AddItemWindow.html" title="class in rofaapp"><span class="typeNameLink">AddItemWindow</span></a> (implements java.awt.event.ActionListener)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">java.awt.Frame (implements java.awt.MenuContainer)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">javax.swing.JFrame (implements javax.accessibility.Accessible, javax.swing.RootPaneContainer, javax.swing.WindowConstants)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/MainWindow.html" title="class in rofaapp"><span class="typeNameLink">MainWindow</span></a> (implements java.awt.event.ActionListener, java.awt.event.MouseListener)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/Furniture.html" title="class in rofaapp"><span class="typeNameLink">Furniture</span></a> (implements java.io.Serializable)
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemChair.html" title="class in rofaapp"><span class="typeNameLink">ItemChair</span></a>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemArmChair.html" title="class in rofaapp"><span class="typeNameLink">ItemArmChair</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemDesk.html" title="class in rofaapp"><span class="typeNameLink">ItemDesk</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemTable.html" title="class in rofaapp"><span class="typeNameLink">ItemTable</span></a>
|
||||||
|
<ul>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemTableChrome.html" title="class in rofaapp"><span class="typeNameLink">ItemTableChrome</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemTableWood.html" title="class in rofaapp"><span class="typeNameLink">ItemTableWood</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemIcon.html" title="class in rofaapp"><span class="typeNameLink">ItemIcon</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ItemOrder.html" title="class in rofaapp"><span class="typeNameLink">ItemOrder</span></a> (implements java.io.Serializable)</li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/ROFCMain.html" title="class in rofaapp"><span class="typeNameLink">ROFCMain</span></a></li>
|
||||||
|
<li type="circle">rofaapp.<a href="../rofaapp/TypeWood.html" title="class in rofaapp"><span class="typeNameLink">TypeWood</span></a> (implements java.io.Serializable)</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li class="navBarCell1Rev">Tree</li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-tree.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-tree.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
153
dist/javadoc/rofaapp/package-use.html
vendored
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:52 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Uses of Package rofaapp</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="../script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Uses of Package rofaapp";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-use.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-use.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="../allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 title="Uses of Package rofaapp" class="title">Uses of Package<br>rofaapp</h1>
|
||||||
|
</div>
|
||||||
|
<div class="contentContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
|
||||||
|
<caption><span>Classes in <a href="../rofaapp/package-summary.html">rofaapp</a> used by <a href="../rofaapp/package-summary.html">rofaapp</a></span><span class="tabEnd"> </span></caption>
|
||||||
|
<tr>
|
||||||
|
<th class="colOne" scope="col">Class and Description</th>
|
||||||
|
</tr>
|
||||||
|
<tbody>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><a href="../rofaapp/class-use/Furniture.html#rofaapp">Furniture</a> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colOne"><a href="../rofaapp/class-use/ItemChair.html#rofaapp">ItemChair</a> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><a href="../rofaapp/class-use/ItemOrder.html#rofaapp">ItemOrder</a> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colOne"><a href="../rofaapp/class-use/ItemTable.html#rofaapp">ItemTable</a> </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colOne"><a href="../rofaapp/class-use/TypeWood.html#rofaapp">TypeWood</a> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="../rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li class="navBarCell1Rev">Use</li>
|
||||||
|
<li><a href="package-tree.html">Tree</a></li>
|
||||||
|
<li><a href="../deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="../index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="../help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="../index.html?rofaapp/package-use.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="package-use.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="../allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
30
dist/javadoc/script.js
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
function show(type)
|
||||||
|
{
|
||||||
|
count = 0;
|
||||||
|
for (var key in methods) {
|
||||||
|
var row = document.getElementById(key);
|
||||||
|
if ((methods[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>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
495
dist/javadoc/serialized-form.html
vendored
Normal file
@ -0,0 +1,495 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!-- NewPage -->
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by javadoc (1.8.0_141) on Tue May 08 15:40:50 BST 2018 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<title>Serialized Form</title>
|
||||||
|
<meta name="date" content="2018-05-08">
|
||||||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
try {
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Serialized Form";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
|
<div>JavaScript is disabled on your browser.</div>
|
||||||
|
</noscript>
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<div class="topNav"><a name="navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.top.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_top">
|
||||||
|
<li><a href="allclasses-noframe.html">All Classes</a></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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.top">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
<div class="header">
|
||||||
|
<h1 title="Serialized Form" class="title">Serialized Form</h1>
|
||||||
|
</div>
|
||||||
|
<div class="serializedFormContainer">
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h2 title="Package">Package rofaapp</h2>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList"><a name="rofaapp.AddItemWindow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/AddItemWindow.html" title="class in rofaapp">rofaapp.AddItemWindow</a> extends javax.swing.JDialog implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>order</h4>
|
||||||
|
<pre><a href="rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> order</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodTypes</h4>
|
||||||
|
<pre><a href="rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a>[] woodTypes</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>isEdit</h4>
|
||||||
|
<pre>boolean isEdit</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>editIndex</h4>
|
||||||
|
<pre>int editIndex</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>chairPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel chairPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>tablePanel</h4>
|
||||||
|
<pre>javax.swing.JPanel tablePanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>deskPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel deskPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>yesnoPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel yesnoPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchChair</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchChair</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchTable</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchTable</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>buttonSwitchDesk</h4>
|
||||||
|
<pre>javax.swing.JButton buttonSwitchDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>yesButton</h4>
|
||||||
|
<pre>javax.swing.JButton yesButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>cancelButton</h4>
|
||||||
|
<pre>javax.swing.JButton cancelButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerChair</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerChair</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>quantitySpinnerChair</h4>
|
||||||
|
<pre>javax.swing.JSpinner quantitySpinnerChair</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>drawsSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner drawsSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>widthSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner widthSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>depthSpinnerDesk</h4>
|
||||||
|
<pre>javax.swing.JSpinner depthSpinnerDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>idSpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner idSpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>quantitySpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner quantitySpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>diameterSpinnerTable</h4>
|
||||||
|
<pre>javax.swing.JSpinner diameterSpinnerTable</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxChair</h4>
|
||||||
|
<pre>javax.swing.JComboBox<E> woodComboBoxChair</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxDesk</h4>
|
||||||
|
<pre>javax.swing.JComboBox<E> woodComboBoxDesk</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>woodComboBoxTable</h4>
|
||||||
|
<pre>javax.swing.JComboBox<E> woodComboBoxTable</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>armrestsCheckBoxChair</h4>
|
||||||
|
<pre>javax.swing.JCheckBox armrestsCheckBoxChair</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>chromeCheckBoxTable</h4>
|
||||||
|
<pre>javax.swing.JCheckBox chromeCheckBoxTable</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.Furniture">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/Furniture.html" title="class in rofaapp">rofaapp.Furniture</a> extends java.lang.Object implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>id</h4>
|
||||||
|
<pre>int id</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>wood</h4>
|
||||||
|
<pre><a href="rofaapp/TypeWood.html" title="class in rofaapp">TypeWood</a> wood</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>icon</h4>
|
||||||
|
<pre>javax.swing.ImageIcon icon</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>name</h4>
|
||||||
|
<pre>java.lang.String name</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemArmChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemArmChair.html" title="class in rofaapp">rofaapp.ItemArmChair</a> extends <a href="rofaapp/ItemChair.html" title="class in rofaapp">ItemChair</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>units</h4>
|
||||||
|
<pre>int units</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemChair">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemChair.html" title="class in rofaapp">rofaapp.ItemChair</a> extends <a href="rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>units</h4>
|
||||||
|
<pre>int units</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemDesk">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemDesk.html" title="class in rofaapp">rofaapp.ItemDesk</a> extends <a href="rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>height</h4>
|
||||||
|
<pre>int height</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>depth</h4>
|
||||||
|
<pre>int depth</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>width</h4>
|
||||||
|
<pre>int width</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>draws</h4>
|
||||||
|
<pre>int draws</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemOrder">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemOrder.html" title="class in rofaapp">rofaapp.ItemOrder</a> extends java.lang.Object implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentSize</h4>
|
||||||
|
<pre>int currentSize</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>orderList</h4>
|
||||||
|
<pre><a href="rofaapp/Furniture.html" title="class in rofaapp">Furniture</a>[] orderList</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemTable">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemTable.html" title="class in rofaapp">rofaapp.ItemTable</a> extends <a href="rofaapp/Furniture.html" title="class in rofaapp">Furniture</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>diameter</h4>
|
||||||
|
<pre>int diameter</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemTableChrome">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemTableChrome.html" title="class in rofaapp">rofaapp.ItemTableChrome</a> extends <a href="rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>basePrice</h4>
|
||||||
|
<pre>double basePrice</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.ItemTableWood">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/ItemTableWood.html" title="class in rofaapp">rofaapp.ItemTableWood</a> extends <a href="rofaapp/ItemTable.html" title="class in rofaapp">ItemTable</a> implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>basePrice</h4>
|
||||||
|
<pre>double basePrice</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.MainWindow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/MainWindow.html" title="class in rofaapp">rofaapp.MainWindow</a> extends javax.swing.JFrame implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentOrder</h4>
|
||||||
|
<pre><a href="rofaapp/ItemOrder.html" title="class in rofaapp">ItemOrder</a> currentOrder</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>currentSelected</h4>
|
||||||
|
<pre>int currentSelected</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel menuPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>gridPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel gridPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>summaryPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel summaryPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>itemSummaryPanel</h4>
|
||||||
|
<pre>javax.swing.JPanel itemSummaryPanel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>imagepanels</h4>
|
||||||
|
<pre>javax.swing.JPanel[][] imagepanels</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>gridTotalPriceLabel</h4>
|
||||||
|
<pre>javax.swing.JLabel gridTotalPriceLabel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>summaryTitleLabel</h4>
|
||||||
|
<pre>javax.swing.JLabel summaryTitleLabel</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuAddItemButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuAddItemButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuSaveButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuSaveButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuLoadButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuLoadButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>menuClearButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuClearButton</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>menuSummaryButton</h4>
|
||||||
|
<pre>javax.swing.JButton menuSummaryButton</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="blockList"><a name="rofaapp.TypeWood">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<h3>Class <a href="rofaapp/TypeWood.html" title="class in rofaapp">rofaapp.TypeWood</a> extends java.lang.Object implements Serializable</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h3>Serialized Fields</h3>
|
||||||
|
<ul class="blockList">
|
||||||
|
<li class="blockList">
|
||||||
|
<h4>name</h4>
|
||||||
|
<pre>java.lang.String name</pre>
|
||||||
|
</li>
|
||||||
|
<li class="blockListLast">
|
||||||
|
<h4>price</h4>
|
||||||
|
<pre>double price</pre>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<div class="bottomNav"><a name="navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
|
||||||
|
<a name="navbar.bottom.firstrow">
|
||||||
|
<!-- -->
|
||||||
|
</a>
|
||||||
|
<ul class="navList" title="Navigation">
|
||||||
|
<li><a href="rofaapp/package-summary.html">Package</a></li>
|
||||||
|
<li>Class</li>
|
||||||
|
<li>Use</li>
|
||||||
|
<li><a href="overview-tree.html">Tree</a></li>
|
||||||
|
<li><a href="deprecated-list.html">Deprecated</a></li>
|
||||||
|
<li><a href="index-files/index-1.html">Index</a></li>
|
||||||
|
<li><a href="help-doc.html">Help</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="subNav">
|
||||||
|
<ul class="navList">
|
||||||
|
<li>Prev</li>
|
||||||
|
<li>Next</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList">
|
||||||
|
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
|
||||||
|
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navList" id="allclasses_navbar_bottom">
|
||||||
|
<li><a href="allclasses-noframe.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>
|
||||||
|
</div>
|
||||||
|
<a name="skip.navbar.bottom">
|
||||||
|
<!-- -->
|
||||||
|
</a></div>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
</body>
|
||||||
|
</html>
|
574
dist/javadoc/stylesheet.css
vendored
Normal file
@ -0,0 +1,574 @@
|
|||||||
|
/* Javadoc style sheet */
|
||||||
|
/*
|
||||||
|
Overall document style
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import url('resources/fonts/dejavu.css');
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color:#ffffff;
|
||||||
|
color:#353833;
|
||||||
|
font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
|
||||||
|
font-size:14px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
a:link, a:visited {
|
||||||
|
text-decoration:none;
|
||||||
|
color:#4A6782;
|
||||||
|
}
|
||||||
|
a:hover, a:focus {
|
||||||
|
text-decoration:none;
|
||||||
|
color:#bb7a2a;
|
||||||
|
}
|
||||||
|
a:active {
|
||||||
|
text-decoration:none;
|
||||||
|
color:#4A6782;
|
||||||
|
}
|
||||||
|
a[name] {
|
||||||
|
color:#353833;
|
||||||
|
}
|
||||||
|
a[name]:hover {
|
||||||
|
text-decoration:none;
|
||||||
|
color:#353833;
|
||||||
|
}
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Document title and Copyright styles
|
||||||
|
*/
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Navigation bar styles
|
||||||
|
*/
|
||||||
|
.bar {
|
||||||
|
background-color:#4D7A97;
|
||||||
|
color:#FFFFFF;
|
||||||
|
padding:.8em .5em .4em .8em;
|
||||||
|
height:auto;/*height:1.8em;*/
|
||||||
|
font-size:11px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
.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.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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Page header and footer styles
|
||||||
|
*/
|
||||||
|
.header, .footer {
|
||||||
|
clear:both;
|
||||||
|
margin:0 20px;
|
||||||
|
padding:5px 0 0 0;
|
||||||
|
}
|
||||||
|
.indexHeader {
|
||||||
|
margin:10px;
|
||||||
|
position:relative;
|
||||||
|
}
|
||||||
|
.indexHeader span{
|
||||||
|
margin-right:15px;
|
||||||
|
}
|
||||||
|
.indexHeader 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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Heading styles
|
||||||
|
*/
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Page layout container styles
|
||||||
|
*/
|
||||||
|
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
|
||||||
|
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 Sans Mono',monospace;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
List styles
|
||||||
|
*/
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Table styles
|
||||||
|
*/
|
||||||
|
.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
|
||||||
|
width:100%;
|
||||||
|
border-left:1px solid #EEE;
|
||||||
|
border-right:1px solid #EEE;
|
||||||
|
border-bottom:1px solid #EEE;
|
||||||
|
}
|
||||||
|
.overviewSummary, .memberSummary {
|
||||||
|
padding:0px;
|
||||||
|
}
|
||||||
|
.overviewSummary caption, .memberSummary caption, .typeSummary caption,
|
||||||
|
.useSummary caption, .constantsSummary caption, .deprecatedSummary 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;
|
||||||
|
}
|
||||||
|
.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
|
||||||
|
.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary 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,
|
||||||
|
.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
|
||||||
|
.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
|
||||||
|
.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
|
||||||
|
.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
|
||||||
|
color:#FFFFFF;
|
||||||
|
}
|
||||||
|
.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
|
||||||
|
.useSummary caption span, .constantsSummary caption span, .deprecatedSummary 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 {
|
||||||
|
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 {
|
||||||
|
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 {
|
||||||
|
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 {
|
||||||
|
display:none;
|
||||||
|
width:5px;
|
||||||
|
position:relative;
|
||||||
|
float:left;
|
||||||
|
background-color:#F8981D;
|
||||||
|
}
|
||||||
|
.memberSummary .activeTableTab .tabEnd {
|
||||||
|
display:none;
|
||||||
|
width:5px;
|
||||||
|
margin-right:3px;
|
||||||
|
position:relative;
|
||||||
|
float:left;
|
||||||
|
background-color:#F8981D;
|
||||||
|
}
|
||||||
|
.memberSummary .tableTab .tabEnd {
|
||||||
|
display:none;
|
||||||
|
width:5px;
|
||||||
|
margin-right:3px;
|
||||||
|
position:relative;
|
||||||
|
background-color:#4D7A97;
|
||||||
|
float:left;
|
||||||
|
|
||||||
|
}
|
||||||
|
.overviewSummary td, .memberSummary td, .typeSummary td,
|
||||||
|
.useSummary td, .constantsSummary td, .deprecatedSummary td {
|
||||||
|
text-align:left;
|
||||||
|
padding:0px 0px 12px 10px;
|
||||||
|
}
|
||||||
|
th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
|
||||||
|
td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
|
||||||
|
vertical-align:top;
|
||||||
|
padding-right:0px;
|
||||||
|
padding-top:8px;
|
||||||
|
padding-bottom:3px;
|
||||||
|
}
|
||||||
|
th.colFirst, th.colLast, th.colOne, .constantsSummary th {
|
||||||
|
background:#dee3e9;
|
||||||
|
text-align:left;
|
||||||
|
padding:8px 3px 3px 7px;
|
||||||
|
}
|
||||||
|
td.colFirst, th.colFirst {
|
||||||
|
white-space:nowrap;
|
||||||
|
font-size:13px;
|
||||||
|
}
|
||||||
|
td.colLast, th.colLast {
|
||||||
|
font-size:13px;
|
||||||
|
}
|
||||||
|
td.colOne, th.colOne {
|
||||||
|
font-size:13px;
|
||||||
|
}
|
||||||
|
.overviewSummary td.colFirst, .overviewSummary th.colFirst,
|
||||||
|
.useSummary td.colFirst, .useSummary th.colFirst,
|
||||||
|
.overviewSummary td.colOne, .overviewSummary th.colOne,
|
||||||
|
.memberSummary td.colFirst, .memberSummary th.colFirst,
|
||||||
|
.memberSummary td.colOne, .memberSummary th.colOne,
|
||||||
|
.typeSummary td.colFirst{
|
||||||
|
width:25%;
|
||||||
|
vertical-align:top;
|
||||||
|
}
|
||||||
|
td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
.tableSubHeadingColor {
|
||||||
|
background-color:#EEEEFF;
|
||||||
|
}
|
||||||
|
.altColor {
|
||||||
|
background-color:#FFFFFF;
|
||||||
|
}
|
||||||
|
.rowColor {
|
||||||
|
background-color:#EEEEEF;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Content styles
|
||||||
|
*/
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Formatting effect styles
|
||||||
|
*/
|
||||||
|
.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, .memberNameLabel, .memberNameLink,
|
||||||
|
.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
|
||||||
|
.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
.deprecationComment, .emphasizedPhrase, .interfaceName {
|
||||||
|
font-style:italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.block div.block span.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;
|
||||||
|
}
|
3
manifest.mf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Manifest-Version: 1.0
|
||||||
|
X-COMMENT: Main-Class will be added automatically by build
|
||||||
|
|
568
src/rofaapp/AddItemWindow.java
Normal file
@ -0,0 +1,568 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javafx.scene.control.Spinner;
|
||||||
|
import sun.applet.Main;
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
|
||||||
|
public class AddItemWindow extends JDialog implements ActionListener
|
||||||
|
{
|
||||||
|
private ItemOrder order;
|
||||||
|
|
||||||
|
private TypeWood woodTypes[];
|
||||||
|
|
||||||
|
private boolean isEdit = false;
|
||||||
|
private int editIndex = -1;
|
||||||
|
|
||||||
|
|
||||||
|
//Main Panels
|
||||||
|
JPanel chairPanel;
|
||||||
|
JPanel tablePanel;
|
||||||
|
JPanel deskPanel;
|
||||||
|
JPanel yesnoPanel;
|
||||||
|
|
||||||
|
//Swicher Buttons
|
||||||
|
JButton buttonSwitchChair;
|
||||||
|
JButton buttonSwitchTable;
|
||||||
|
JButton buttonSwitchDesk;
|
||||||
|
|
||||||
|
//YesNo Buttons
|
||||||
|
JButton yesButton;
|
||||||
|
JButton cancelButton;
|
||||||
|
|
||||||
|
//Spinners
|
||||||
|
JSpinner idSpinnerChair;
|
||||||
|
JSpinner quantitySpinnerChair;
|
||||||
|
JSpinner idSpinnerDesk;
|
||||||
|
JSpinner drawsSpinnerDesk;
|
||||||
|
JSpinner widthSpinnerDesk;
|
||||||
|
JSpinner depthSpinnerDesk;
|
||||||
|
JSpinner idSpinnerTable;
|
||||||
|
JSpinner quantitySpinnerTable;
|
||||||
|
JSpinner diameterSpinnerTable;
|
||||||
|
|
||||||
|
//Combo Boxes
|
||||||
|
JComboBox woodComboBoxChair;
|
||||||
|
JComboBox woodComboBoxDesk;
|
||||||
|
JComboBox woodComboBoxTable;
|
||||||
|
|
||||||
|
//Check Boxes
|
||||||
|
JCheckBox armrestsCheckBoxChair;
|
||||||
|
JCheckBox chromeCheckBoxTable;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor used when adding a new item.
|
||||||
|
* <br>
|
||||||
|
* Calls all initialisation functions for the window: {@link #initWindowSettings()}, {@link #initSelectButtons()}, {@link #initSelectedPanels()}, {@link #initYesNoButtons()}.
|
||||||
|
* @param defaultPanel Selects the panel that will be shown when the window is first shown (the default panel). Calls/is used in the function {@link #changeSelectedPanel(int)}.
|
||||||
|
* @param o The current item order that will be edited.
|
||||||
|
* @param tw An array if all of the wood types.
|
||||||
|
*/
|
||||||
|
public AddItemWindow(int defaultPanel, ItemOrder o, TypeWood[] tw)
|
||||||
|
{
|
||||||
|
order = o;
|
||||||
|
woodTypes = tw;
|
||||||
|
|
||||||
|
//This constructor is called when adding a new item.
|
||||||
|
//Init functions.
|
||||||
|
initWindowSettings();
|
||||||
|
initSelectButtons();
|
||||||
|
initSelectedPanels();
|
||||||
|
initYesNoButtons();
|
||||||
|
//Change panel to set default.
|
||||||
|
changeSelectedPanel(defaultPanel);
|
||||||
|
//Set the window location relative to null (center screen).
|
||||||
|
setLocationRelativeTo(null);
|
||||||
|
//Set the window to visible after all init has been done.
|
||||||
|
setVisible(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor used when editing an existing item.
|
||||||
|
* Calls all initialisation functions for the window: {@link #initWindowSettings()}, {@link #initSelectButtons()}, {@link #initSelectedPanels()}, {@link #initYesNoButtons()}.
|
||||||
|
* <br>
|
||||||
|
* For the edit constructor, calls {@link #loadEditSettings(Furniture)} which shows the current item's attributes in the window.
|
||||||
|
* @param defaultPanel Selects the panel that will be shown when the window is first shown (the default panel). Calls/is used in the function {@link #changeSelectedPanel(int)}.
|
||||||
|
* @param o The current item order that will be edited.
|
||||||
|
* @param tw An array if all of the wood types.
|
||||||
|
* @param index The index of the currently edited item within the ItemOrder (0-8, if not, will throw an exception).
|
||||||
|
* @param f The furniture object of the item that is being edited.
|
||||||
|
*/
|
||||||
|
public AddItemWindow(int defaultPanel, ItemOrder o, TypeWood[] tw, int index, Furniture f)
|
||||||
|
{
|
||||||
|
order = o;
|
||||||
|
woodTypes = tw;
|
||||||
|
editIndex = index;
|
||||||
|
|
||||||
|
//This constructor is called when editing an item.
|
||||||
|
initWindowSettings();
|
||||||
|
initSelectButtons();
|
||||||
|
initSelectedPanels();
|
||||||
|
initYesNoButtons();
|
||||||
|
loadEditSettings(f);
|
||||||
|
changeSelectedPanel(defaultPanel);
|
||||||
|
setLocationRelativeTo(null);
|
||||||
|
setVisible(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialises basic elements of the window (such as layout, the default close operation and the modality type).
|
||||||
|
*/
|
||||||
|
private void initWindowSettings()
|
||||||
|
{
|
||||||
|
//Needed to make the main thread wait until this dialog is disposed
|
||||||
|
setModalityType(ModalityType.APPLICATION_MODAL);
|
||||||
|
setResizable(false);
|
||||||
|
setLayout(new FlowLayout());
|
||||||
|
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
||||||
|
setTitle("Add Item");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialises the three buttons displayed at the top of the frame (instantiates them, adds their text, creates the actionlistener and adds them to the panel).
|
||||||
|
*/
|
||||||
|
private void initSelectButtons()
|
||||||
|
{
|
||||||
|
JPanel buttonSwitcher = new JPanel();
|
||||||
|
buttonSwitcher.setPreferredSize(new Dimension(500, 50));
|
||||||
|
buttonSwitcher.setVisible(true);
|
||||||
|
this.add(buttonSwitcher);
|
||||||
|
|
||||||
|
buttonSwitchChair = new JButton("Chair");
|
||||||
|
buttonSwitchTable = new JButton("Table");
|
||||||
|
buttonSwitchDesk = new JButton("Desk");
|
||||||
|
|
||||||
|
buttonSwitchChair.addActionListener(this);
|
||||||
|
buttonSwitchDesk.addActionListener(this);
|
||||||
|
buttonSwitchTable.addActionListener(this);
|
||||||
|
|
||||||
|
buttonSwitchChair.setPreferredSize(new Dimension(150, 30));
|
||||||
|
buttonSwitchTable.setPreferredSize(new Dimension(150, 30));
|
||||||
|
buttonSwitchDesk.setPreferredSize(new Dimension(150, 30));
|
||||||
|
|
||||||
|
buttonSwitcher.add(buttonSwitchChair);
|
||||||
|
buttonSwitcher.add(buttonSwitchTable);
|
||||||
|
buttonSwitcher.add(buttonSwitchDesk);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialises the 'Yes-No' buttons shown at the bottom of the form (creates them and adds them to the panel).
|
||||||
|
*/
|
||||||
|
private void initYesNoButtons()
|
||||||
|
{
|
||||||
|
yesButton = new JButton("Confirm");
|
||||||
|
cancelButton = new JButton("Cancel");
|
||||||
|
yesnoPanel = new JPanel();
|
||||||
|
yesButton.addActionListener(this);
|
||||||
|
cancelButton.addActionListener(this);
|
||||||
|
yesnoPanel.add(yesButton);
|
||||||
|
yesnoPanel.add(cancelButton);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates all of the panels and buttons and elements needed for each of the panels for each of the furniture items. Creates all elements, adds the action listeners for them and adds them to the window. (WARNING: Very long function of repetitiveness).
|
||||||
|
*/
|
||||||
|
private void initSelectedPanels()
|
||||||
|
{
|
||||||
|
//Main Panels
|
||||||
|
chairPanel = new JPanel();
|
||||||
|
tablePanel = new JPanel();
|
||||||
|
deskPanel = new JPanel();
|
||||||
|
|
||||||
|
//Sub Panels
|
||||||
|
//Chair
|
||||||
|
JPanel idPanelC = new JPanel();
|
||||||
|
JPanel quantityPanelC = new JPanel();
|
||||||
|
JPanel woodPanelC = new JPanel();
|
||||||
|
JPanel armPanelC = new JPanel();
|
||||||
|
//Table
|
||||||
|
JPanel idPanelT = new JPanel();
|
||||||
|
JPanel quantityPanelT = new JPanel();
|
||||||
|
JPanel woodPanelT = new JPanel();
|
||||||
|
JPanel chromePanelT = new JPanel();
|
||||||
|
JPanel diameterPanelT = new JPanel();
|
||||||
|
//Desk
|
||||||
|
JPanel idPanelD = new JPanel();
|
||||||
|
JPanel quantityPanelD = new JPanel();
|
||||||
|
JPanel woodPanelD = new JPanel();
|
||||||
|
JPanel drawsPanelD = new JPanel();
|
||||||
|
JPanel heightPanelD = new JPanel();
|
||||||
|
JPanel widthPanelD = new JPanel();
|
||||||
|
JPanel depthPanelD = new JPanel();
|
||||||
|
|
||||||
|
chairPanel.setPreferredSize(new Dimension(500, 140));
|
||||||
|
tablePanel.setPreferredSize(new Dimension(500, 175));
|
||||||
|
deskPanel.setPreferredSize(new Dimension(500, 250));
|
||||||
|
|
||||||
|
//Set Sizes for Sub Panels
|
||||||
|
Dimension subPanelDimension = new Dimension(500, 30);
|
||||||
|
idPanelC.setPreferredSize(subPanelDimension);
|
||||||
|
woodPanelC.setPreferredSize(subPanelDimension);
|
||||||
|
armPanelC.setPreferredSize(subPanelDimension);
|
||||||
|
quantityPanelC.setPreferredSize(subPanelDimension);
|
||||||
|
|
||||||
|
idPanelT.setPreferredSize(subPanelDimension);
|
||||||
|
quantityPanelT.setPreferredSize(subPanelDimension);
|
||||||
|
woodPanelT.setPreferredSize(subPanelDimension);
|
||||||
|
chromePanelT.setPreferredSize(subPanelDimension);
|
||||||
|
|
||||||
|
idPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
quantityPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
woodPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
drawsPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
heightPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
widthPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
depthPanelD.setPreferredSize(subPanelDimension);
|
||||||
|
|
||||||
|
//Sub Elements
|
||||||
|
|
||||||
|
///////////////
|
||||||
|
//Chair Panel//
|
||||||
|
///////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
JLabel idLabelChair = new JLabel(" ID:");
|
||||||
|
idSpinnerChair = new JSpinner(new SpinnerNumberModel(order.getFirstAvailable() + 1, 1, 9999, 1));
|
||||||
|
idSpinnerChair.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Quantity
|
||||||
|
JLabel quantityLabelChair = new JLabel(" Quantity:");
|
||||||
|
quantitySpinnerChair = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
quantitySpinnerChair.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Wood Type
|
||||||
|
JLabel woodLabelChair = new JLabel(" Wood Type:");
|
||||||
|
woodComboBoxChair = new JComboBox(woodTypes);//GET WOOD TYPES
|
||||||
|
woodComboBoxChair.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Armrests
|
||||||
|
JLabel armrestsLabelChair = new JLabel(" Armrests:");
|
||||||
|
armrestsCheckBoxChair = new JCheckBox();
|
||||||
|
armrestsCheckBoxChair.setPreferredSize(new Dimension(200, 25));
|
||||||
|
|
||||||
|
|
||||||
|
///////////////
|
||||||
|
//Table Panel//
|
||||||
|
///////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
JLabel idLabelTable = new JLabel(" ID:");
|
||||||
|
idSpinnerTable = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
idSpinnerTable.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Quantity
|
||||||
|
JLabel quantityLabelTable = new JLabel(" Quantity:");
|
||||||
|
quantitySpinnerTable = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
quantitySpinnerTable.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Wood Type
|
||||||
|
JLabel woodLabelTable = new JLabel("Wood Type:");
|
||||||
|
woodComboBoxTable = new JComboBox(woodTypes);//GET WOOD TYPES
|
||||||
|
woodComboBoxTable.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Chrome
|
||||||
|
JLabel chromeLabelTable = new JLabel(" Chrome:");
|
||||||
|
chromeCheckBoxTable = new JCheckBox();
|
||||||
|
chromeCheckBoxTable.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Diameter
|
||||||
|
JLabel diameterLabelTable = new JLabel(" Diameter:");
|
||||||
|
diameterSpinnerTable = new JSpinner(new SpinnerNumberModel(50, 50, 9999, 1));
|
||||||
|
diameterSpinnerTable.setPreferredSize(new Dimension(200, 25));
|
||||||
|
|
||||||
|
//////////////
|
||||||
|
//Desk Panel//
|
||||||
|
//////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
JLabel idLabelDesk = new JLabel(" ID:");
|
||||||
|
idSpinnerDesk = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));//CHANGE THIS ONE!!!!!!
|
||||||
|
idSpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Quantity
|
||||||
|
JLabel quantityLabelDesk = new JLabel(" Quantity:");
|
||||||
|
JSpinner quantitySpinnerDesk = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
quantitySpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Wood Type
|
||||||
|
JLabel woodLabelDesk = new JLabel("Wood Type:");
|
||||||
|
woodComboBoxDesk = new JComboBox(woodTypes);//GET WOOD TYPES
|
||||||
|
woodComboBoxDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Draws
|
||||||
|
JLabel drawsLabelDesk = new JLabel(" Draws:");
|
||||||
|
drawsSpinnerDesk = new JSpinner(new SpinnerNumberModel(1, 1, 4, 1));
|
||||||
|
drawsSpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Height
|
||||||
|
JLabel heightLabelDesk = new JLabel(" Height:");
|
||||||
|
JSpinner heightSpinnerDesk = new JSpinner(new SpinnerNumberModel(80, 80, 80, 1));
|
||||||
|
heightSpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
heightSpinnerDesk.setEnabled(false);
|
||||||
|
//Width
|
||||||
|
JLabel widthLabelDesk = new JLabel(" Width:");
|
||||||
|
widthSpinnerDesk = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
widthSpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
//Depth
|
||||||
|
JLabel depthLabelDesk = new JLabel(" Depth:");
|
||||||
|
depthSpinnerDesk = new JSpinner(new SpinnerNumberModel(1, 1, 9999, 1));
|
||||||
|
depthSpinnerDesk.setPreferredSize(new Dimension(200, 25));
|
||||||
|
|
||||||
|
//Add Elements to Panels
|
||||||
|
|
||||||
|
///////////////
|
||||||
|
//Chair Panel// }
|
||||||
|
///////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
idPanelC.add(idLabelChair);
|
||||||
|
idPanelC.add(idSpinnerChair);
|
||||||
|
//QUANTITY
|
||||||
|
quantityPanelC.add(quantityLabelChair);
|
||||||
|
quantityPanelC.add(quantitySpinnerChair);
|
||||||
|
//WOODTYPE
|
||||||
|
woodPanelC.add(woodLabelChair);
|
||||||
|
woodPanelC.add(woodComboBoxChair);
|
||||||
|
//ARMRESTS
|
||||||
|
armPanelC.add(armrestsLabelChair);
|
||||||
|
armPanelC.add(armrestsCheckBoxChair);
|
||||||
|
|
||||||
|
///////////////
|
||||||
|
//Table Panel//
|
||||||
|
///////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
idPanelT.add(idLabelTable);
|
||||||
|
idPanelT.add(idSpinnerTable);
|
||||||
|
//QUANTITY
|
||||||
|
quantityPanelT.add(quantityLabelTable);
|
||||||
|
quantityPanelT.add(quantitySpinnerTable);
|
||||||
|
//WOOD TYPE
|
||||||
|
woodPanelT.add(woodLabelTable);
|
||||||
|
woodPanelT.add(woodComboBoxTable);
|
||||||
|
//CHROME
|
||||||
|
chromePanelT.add(chromeLabelTable);
|
||||||
|
chromePanelT.add(chromeCheckBoxTable);
|
||||||
|
//DIAMETER
|
||||||
|
diameterPanelT.add(diameterLabelTable);
|
||||||
|
diameterPanelT.add(diameterSpinnerTable);
|
||||||
|
|
||||||
|
//////////////
|
||||||
|
//Desk Panel//
|
||||||
|
//////////////
|
||||||
|
|
||||||
|
//ID
|
||||||
|
idPanelD.add(idLabelDesk);
|
||||||
|
idPanelD.add(idSpinnerDesk);
|
||||||
|
//QUANTITY
|
||||||
|
quantityPanelD.add(quantityLabelDesk);
|
||||||
|
quantityPanelD.add(quantitySpinnerDesk);
|
||||||
|
//WOOD TYPE
|
||||||
|
woodPanelD.add(woodLabelDesk);
|
||||||
|
woodPanelD.add(woodComboBoxDesk);
|
||||||
|
//DRAWS
|
||||||
|
drawsPanelD.add(drawsLabelDesk);
|
||||||
|
drawsPanelD.add(drawsSpinnerDesk);
|
||||||
|
//HEIGHT
|
||||||
|
heightPanelD.add(heightLabelDesk);
|
||||||
|
heightPanelD.add(heightSpinnerDesk);
|
||||||
|
//WIDTH
|
||||||
|
widthPanelD.add(widthLabelDesk);
|
||||||
|
widthPanelD.add(widthSpinnerDesk);
|
||||||
|
//DEPTH
|
||||||
|
depthPanelD.add(depthLabelDesk);
|
||||||
|
depthPanelD.add(depthSpinnerDesk);
|
||||||
|
|
||||||
|
//Chair Panel
|
||||||
|
chairPanel.add(idPanelC);
|
||||||
|
chairPanel.add(quantityPanelC);
|
||||||
|
chairPanel.add(woodPanelC);
|
||||||
|
chairPanel.add(armPanelC);
|
||||||
|
//Table Panel
|
||||||
|
tablePanel.add(idPanelT);
|
||||||
|
tablePanel.add(quantityPanelT);
|
||||||
|
tablePanel.add(woodPanelT);
|
||||||
|
tablePanel.add(chromePanelT);
|
||||||
|
tablePanel.add(diameterPanelT);
|
||||||
|
//Desk Panel
|
||||||
|
deskPanel.add(idPanelD);
|
||||||
|
deskPanel.add(quantityPanelD);
|
||||||
|
deskPanel.add(woodPanelD);
|
||||||
|
deskPanel.add(drawsPanelD);
|
||||||
|
deskPanel.add(heightPanelD);
|
||||||
|
deskPanel.add(widthPanelD);
|
||||||
|
deskPanel.add(depthPanelD);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads a given furniture item, and changes the window elements to the attributes of the given furniture item.
|
||||||
|
* @param f Given furniture item.
|
||||||
|
*/
|
||||||
|
private void loadEditSettings(Furniture f)
|
||||||
|
{
|
||||||
|
//Set flag to show this instance is an edit.
|
||||||
|
isEdit = true;
|
||||||
|
if (f instanceof ItemTable)
|
||||||
|
{
|
||||||
|
//Cast to ItemTable
|
||||||
|
ItemTable it = (ItemTable)f;
|
||||||
|
//Set values to edited object
|
||||||
|
idSpinnerTable.setValue(it.getId());
|
||||||
|
woodComboBoxTable.setSelectedItem(it.getWood());
|
||||||
|
chromeCheckBoxTable.setSelected(f instanceof ItemTableChrome);
|
||||||
|
diameterSpinnerTable.setValue(it.getDiameter());
|
||||||
|
}
|
||||||
|
else if (f instanceof ItemChair)
|
||||||
|
{
|
||||||
|
//Cast to ItemChair
|
||||||
|
ItemChair ic = (ItemChair)f;
|
||||||
|
idSpinnerChair.setValue(ic.getId());
|
||||||
|
woodComboBoxChair.setSelectedItem(ic.getWood());
|
||||||
|
armrestsCheckBoxChair.setSelected(f instanceof ItemArmChair);
|
||||||
|
}
|
||||||
|
else if (f instanceof ItemDesk)
|
||||||
|
{
|
||||||
|
//Cast to ItemDesk
|
||||||
|
ItemDesk id = (ItemDesk)f;
|
||||||
|
idSpinnerDesk.setValue(id.getId());
|
||||||
|
woodComboBoxDesk.setSelectedItem(id.getWood());
|
||||||
|
drawsSpinnerDesk.setValue(id.getDraws());
|
||||||
|
widthSpinnerDesk.setValue(id.getWidth());
|
||||||
|
depthSpinnerDesk.setValue(id.getDepth());
|
||||||
|
}
|
||||||
|
setTitle("Edit Item: " + f.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simple method for giving an instance of furnature and getting back the tab index of the object in the window.
|
||||||
|
* @param f The furniture item.
|
||||||
|
* @return The tab index of the given item.
|
||||||
|
*/
|
||||||
|
public static int getTabValue(Furniture f)
|
||||||
|
{
|
||||||
|
if (f instanceof ItemChair)
|
||||||
|
return 1;
|
||||||
|
else if (f instanceof ItemDesk)
|
||||||
|
return 2;
|
||||||
|
else if (f instanceof ItemTable)
|
||||||
|
return 3;
|
||||||
|
else
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the currently selected tab.
|
||||||
|
* @param i The tab index to switch views to. (1-3. If not a valid index, will display an empty panel.)
|
||||||
|
*/
|
||||||
|
private void changeSelectedPanel(int i)
|
||||||
|
{
|
||||||
|
remove(yesnoPanel);
|
||||||
|
if (i == 1)
|
||||||
|
{
|
||||||
|
remove(deskPanel);
|
||||||
|
remove(tablePanel);
|
||||||
|
add(chairPanel);
|
||||||
|
//Validate needed for repaint
|
||||||
|
validate();
|
||||||
|
repaint();
|
||||||
|
setSize(490, 290);
|
||||||
|
}
|
||||||
|
else if (i == 2)
|
||||||
|
{
|
||||||
|
remove(tablePanel);
|
||||||
|
remove(chairPanel);
|
||||||
|
add(deskPanel);
|
||||||
|
//Validate needed for repaint
|
||||||
|
validate();
|
||||||
|
repaint();
|
||||||
|
setSize(new Dimension(490, 410));
|
||||||
|
}
|
||||||
|
else if (i == 3)
|
||||||
|
{
|
||||||
|
remove(chairPanel);
|
||||||
|
remove(deskPanel);
|
||||||
|
add(tablePanel);
|
||||||
|
//Validate needed for repaint
|
||||||
|
validate();
|
||||||
|
repaint();
|
||||||
|
setSize(new Dimension(490, 330));
|
||||||
|
}
|
||||||
|
add(yesnoPanel);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return The current order within the window instance.
|
||||||
|
*/
|
||||||
|
public ItemOrder getUpdatedOrder()
|
||||||
|
{
|
||||||
|
return order;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Action listener for the buttons shown on the window.
|
||||||
|
* @param e ActionEvent.
|
||||||
|
*/
|
||||||
|
public void actionPerformed(ActionEvent e)
|
||||||
|
{
|
||||||
|
if (e.getSource().equals(buttonSwitchChair) && chairPanel.getParent() == null)
|
||||||
|
{
|
||||||
|
changeSelectedPanel(1);
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(buttonSwitchTable) && tablePanel.getParent() == null)
|
||||||
|
{
|
||||||
|
changeSelectedPanel(3);
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(buttonSwitchDesk) && deskPanel.getParent() == null)
|
||||||
|
{
|
||||||
|
changeSelectedPanel(2);
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(cancelButton))
|
||||||
|
{
|
||||||
|
dispose();
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(yesButton))
|
||||||
|
{
|
||||||
|
if (order.getFreeSpace() != 0)
|
||||||
|
{
|
||||||
|
Furniture ic = null;
|
||||||
|
if (deskPanel.getParent() != null)
|
||||||
|
{
|
||||||
|
//Desk Panel is currently selected (displayed)
|
||||||
|
ic = new ItemDesk((int)idSpinnerDesk.getValue(), (TypeWood)woodComboBoxDesk.getSelectedItem(), ItemIcon.DESK_ICON[(int)drawsSpinnerDesk.getValue()], (int)drawsSpinnerDesk.getValue(), (int)widthSpinnerDesk.getValue(), (int)depthSpinnerDesk.getValue());
|
||||||
|
}
|
||||||
|
else if (tablePanel.getParent() != null)
|
||||||
|
{
|
||||||
|
if (chromeCheckBoxTable.isSelected())
|
||||||
|
{
|
||||||
|
ic = new ItemTableChrome((int)idSpinnerTable.getValue(), (TypeWood)woodComboBoxTable.getSelectedItem(), ItemIcon.TABLE_ICON_1, (int)diameterSpinnerTable.getValue());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ic = new ItemTableWood((int)idSpinnerTable.getValue(), (TypeWood)woodComboBoxTable.getSelectedItem(), ItemIcon.TABLE_ICON_2, (int)diameterSpinnerTable.getValue());
|
||||||
|
}
|
||||||
|
//Table Panel is currently selected (displayed)
|
||||||
|
}
|
||||||
|
else if (chairPanel.getParent() != null)
|
||||||
|
{
|
||||||
|
//Chair Panel is currently selected (displayed)
|
||||||
|
if (armrestsCheckBoxChair.isSelected())
|
||||||
|
{
|
||||||
|
ic = new ItemArmChair((int)idSpinnerChair.getValue(), (TypeWood)woodComboBoxChair.getSelectedItem(), ItemIcon.CHAIR_ICON_2);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ic = new ItemChair((int)idSpinnerChair.getValue(), (TypeWood)woodComboBoxChair.getSelectedItem(), ItemIcon.CHAIR_ICON_1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isEdit)
|
||||||
|
{
|
||||||
|
order.add(ic, editIndex, true);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
order.add(ic, order.getFirstAvailable(), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
dispose();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
JOptionPane.showMessageDialog(this, "There is no space left in this order for any other items.", "Order Full!", JOptionPane.INFORMATION_MESSAGE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
45
src/rofaapp/Furniture.java
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
public abstract class Furniture implements Serializable{
|
||||||
|
|
||||||
|
private int id;
|
||||||
|
private TypeWood wood;
|
||||||
|
private ImageIcon icon;
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
//Getters
|
||||||
|
public int getId() {return id;}
|
||||||
|
public TypeWood getWood() {return wood;}
|
||||||
|
public ImageIcon getIcon() {return icon;}
|
||||||
|
public String getName() {return name;}
|
||||||
|
public String toString() {return name;}
|
||||||
|
|
||||||
|
//Setters (returns true if successful, false if not.)
|
||||||
|
public boolean setId(int i)
|
||||||
|
{
|
||||||
|
id = i;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean setWood(TypeWood w)
|
||||||
|
{
|
||||||
|
wood = w;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean setIcon(ImageIcon i)
|
||||||
|
{
|
||||||
|
icon = i;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean setName(String s)
|
||||||
|
{
|
||||||
|
name = s;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Abstract Methods
|
||||||
|
public abstract int getUnits();
|
||||||
|
public abstract double getPrice();
|
||||||
|
}
|
22
src/rofaapp/ItemArmChair.java
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
public class ItemArmChair extends ItemChair {
|
||||||
|
|
||||||
|
//Only thing that is different is the units
|
||||||
|
private final int units = 1625 + 250;
|
||||||
|
|
||||||
|
ItemArmChair(int i, TypeWood tw, ImageIcon im)
|
||||||
|
{
|
||||||
|
setName("Arm Chair");
|
||||||
|
setId(i);
|
||||||
|
setWood(tw);
|
||||||
|
setIcon(im);
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
return units * getWood().getPrice();
|
||||||
|
}
|
||||||
|
}
|
42
src/rofaapp/ItemChair.java
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
public class ItemChair extends Furniture {
|
||||||
|
|
||||||
|
private final int units = 1625;
|
||||||
|
|
||||||
|
//Empty Constructor (Needed for ItemArmChair)
|
||||||
|
ItemChair()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
//Full contrsuctor
|
||||||
|
/**
|
||||||
|
* Full Constructor
|
||||||
|
* @param i ID of the item.
|
||||||
|
* @param tw Wood Type of the item.
|
||||||
|
* @param im Icon of the item.
|
||||||
|
*/
|
||||||
|
ItemChair(int i, TypeWood tw, ImageIcon im)
|
||||||
|
{
|
||||||
|
setName("Chair");
|
||||||
|
setId(i);
|
||||||
|
setWood(tw);
|
||||||
|
setIcon(im);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Implement abstract methods
|
||||||
|
public int getUnits()
|
||||||
|
{
|
||||||
|
return units;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return {@link #units} * woodPrice.
|
||||||
|
*/
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
return units * getWood().getPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
72
src/rofaapp/ItemDesk.java
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
public class ItemDesk extends Furniture{
|
||||||
|
|
||||||
|
private final int height = 80;
|
||||||
|
private int depth;
|
||||||
|
private int width;
|
||||||
|
private int draws;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param idl ID of the item.
|
||||||
|
* @param tw Wood Type of the item.
|
||||||
|
* @param ic Icon of the item.
|
||||||
|
* @param drawcount Amount of draws
|
||||||
|
* @param widthcount Width of the desk.
|
||||||
|
* @param depthcount Depth of the desk.
|
||||||
|
*/
|
||||||
|
//Constructor
|
||||||
|
ItemDesk(int idl, TypeWood tw, ImageIcon ic, int drawcount, int widthcount, int depthcount)
|
||||||
|
{
|
||||||
|
setName("Desk");
|
||||||
|
setId(idl);
|
||||||
|
setWood(tw);
|
||||||
|
setIcon(ic);
|
||||||
|
draws = drawcount;
|
||||||
|
width = widthcount;
|
||||||
|
depth = depthcount;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Getters
|
||||||
|
public int getHeight(){return height;}
|
||||||
|
public int getDepth(){return depth;}
|
||||||
|
public int getWidth(){return width;}
|
||||||
|
public int getDraws(){return draws;}
|
||||||
|
|
||||||
|
//Setters
|
||||||
|
public boolean setDepth(int d)
|
||||||
|
{
|
||||||
|
depth = d;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean setWidth(int w)
|
||||||
|
{
|
||||||
|
width = w;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean setDraws(int d)
|
||||||
|
{
|
||||||
|
draws = d;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Implement abstract methods
|
||||||
|
/**
|
||||||
|
* Does nothing.
|
||||||
|
* @return 0
|
||||||
|
*/
|
||||||
|
public int getUnits()
|
||||||
|
{
|
||||||
|
//This is the only item that doesn't include units, so just returns 0.
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return The price of the item.
|
||||||
|
*/
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
return (((height + width + depth) * 12) + (depth * width) * getWood().getPrice()) + (draws * 8.50);
|
||||||
|
}
|
||||||
|
}
|
58
src/rofaapp/ItemIcon.java
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import java.awt.Dimension;
|
||||||
|
import java.awt.Image;
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author t7048312
|
||||||
|
*/
|
||||||
|
public class ItemIcon {
|
||||||
|
|
||||||
|
//Chair Icons
|
||||||
|
public static final ImageIcon CHAIR_ICON_1 = new ImageIcon("Pictures/Chair1.png");
|
||||||
|
public static final ImageIcon CHAIR_ICON_2 = new ImageIcon("Pictures/Chair2.png");
|
||||||
|
|
||||||
|
//Desk Icons
|
||||||
|
public static final ImageIcon DESK_ICON_1 = new ImageIcon("Pictures/Desk1.png");
|
||||||
|
public static final ImageIcon DESK_ICON_2 = new ImageIcon("Pictures/Desk2.png");
|
||||||
|
public static final ImageIcon DESK_ICON_3 = new ImageIcon("Pictures/Desk3.png");
|
||||||
|
public static final ImageIcon DESK_ICON_4 = new ImageIcon("Pictures/Desk4.png");
|
||||||
|
|
||||||
|
public static final ImageIcon DESK_ICON[] = new ImageIcon[]{null, DESK_ICON_1, DESK_ICON_2, DESK_ICON_3, DESK_ICON_4};
|
||||||
|
|
||||||
|
//Table Icons
|
||||||
|
public static final ImageIcon TABLE_ICON_1 = new ImageIcon("Pictures/Table1.png");
|
||||||
|
public static final ImageIcon TABLE_ICON_2 = new ImageIcon("Pictures/Table2.png");
|
||||||
|
|
||||||
|
//Utility Functions
|
||||||
|
/**
|
||||||
|
* Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.
|
||||||
|
* @param i The ImageIcon.
|
||||||
|
* @param x The X size of the new image,
|
||||||
|
* @param y The Y size of the new image.
|
||||||
|
* @return The resized image.
|
||||||
|
*/
|
||||||
|
public static ImageIcon resize(ImageIcon i, int x, int y)
|
||||||
|
{
|
||||||
|
//Dirty code to resize image.
|
||||||
|
return new ImageIcon(i.getImage().getScaledInstance(x, y, Image.SCALE_SMOOTH));
|
||||||
|
}
|
||||||
|
/** Resizes an ImageIcon using the Image.SCALE_SMOOTH arg.
|
||||||
|
* @param i The ImageIcon.
|
||||||
|
* @param d Dimension of the desired image.
|
||||||
|
* @return The resized image.
|
||||||
|
*/
|
||||||
|
public static ImageIcon resize(ImageIcon i, Dimension d)
|
||||||
|
{
|
||||||
|
return new ImageIcon(i.getImage().getScaledInstance(d.width, d.height, Image.SCALE_SMOOTH));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
177
src/rofaapp/ItemOrder.java
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.lang.reflect.Type;
|
||||||
|
|
||||||
|
public class ItemOrder implements Serializable{
|
||||||
|
|
||||||
|
private final transient int arraySize = 9;
|
||||||
|
private int currentSize;
|
||||||
|
private Furniture orderList[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an empty item order of {@link #arraySize} items.
|
||||||
|
*/
|
||||||
|
ItemOrder()
|
||||||
|
{
|
||||||
|
orderList = new Furniture[arraySize];
|
||||||
|
for (int i = 0; i < arraySize; i++)
|
||||||
|
{
|
||||||
|
//NULL EVERYTHING!!!!!!!!!!!!!!!!
|
||||||
|
orderList[i] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Getters
|
||||||
|
/**
|
||||||
|
* Gets the index of the first available space within {@link #orderList}. (-1 if full).
|
||||||
|
* @return Integer of the first empty index. (-1 if full)
|
||||||
|
*/
|
||||||
|
public int getFirstAvailable()
|
||||||
|
{
|
||||||
|
//Gets the index of the first available (empty) space in the array (or if full, returns -1)
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
if (orderList[i] == null)
|
||||||
|
{
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the furniture object of the given index in the {@link #orderList} if valid. (Else, returns null).
|
||||||
|
* @param index Index of the item within the array.
|
||||||
|
* @return Furniture item of the given index.
|
||||||
|
*/
|
||||||
|
public Furniture get(int index)
|
||||||
|
{
|
||||||
|
//Make sure the value passed is within the array indexes
|
||||||
|
if (isValidIndex(index))
|
||||||
|
{
|
||||||
|
//Returns the value in the given index. If nothing is there, returns null.
|
||||||
|
return orderList[index];
|
||||||
|
}
|
||||||
|
//If not a valid index, will return null
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an item furniture to the {@link #orderList} at the given index.
|
||||||
|
* @param f Furniture object to add.
|
||||||
|
* @param index Index within the {@link #orderList} array.
|
||||||
|
* @param force If a furniture object already exists there, passing this as true will overwrite it. If this is false, will just skip.
|
||||||
|
*/
|
||||||
|
public void add(Furniture f, int index, boolean force)
|
||||||
|
{
|
||||||
|
|
||||||
|
//If force is true, it will overwrite the entry in the array at the index provided (if valid). Else, won't.
|
||||||
|
if ((get(index) == null || force == true) && isValidIndex(index))
|
||||||
|
{
|
||||||
|
orderList[index] = f;
|
||||||
|
}
|
||||||
|
//Don't do anything if the if statement isn't satisfied.
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Deletes (nulls) a furniture object in {@link #orderList} where the given index is. Then shifts everything in the array into order again.
|
||||||
|
* @param index Index of item in the list that gets deleted.
|
||||||
|
*/
|
||||||
|
public void del(int index)
|
||||||
|
{
|
||||||
|
if (isValidIndex(index))
|
||||||
|
{
|
||||||
|
orderList[index] = null;
|
||||||
|
}
|
||||||
|
normalise();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Deletes (nulls) everything in the list.
|
||||||
|
*/
|
||||||
|
public void deleteAll()
|
||||||
|
{
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
orderList[i] = null;
|
||||||
|
}
|
||||||
|
normalise();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return Max array size.
|
||||||
|
*/
|
||||||
|
public int getMaxSize()
|
||||||
|
{
|
||||||
|
return arraySize;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Current array size. (Will always be {@link #arraySize}).
|
||||||
|
* @return Int of the size of the array.
|
||||||
|
*/
|
||||||
|
public int getCurrentSize()
|
||||||
|
{
|
||||||
|
return orderList.length;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Gets the number of free spaces within the {@link #orderList}.
|
||||||
|
* @return Int of the number of spaces in the array available.
|
||||||
|
*/
|
||||||
|
public int getFreeSpace()
|
||||||
|
{
|
||||||
|
int counter = 0;
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
if (orderList[i] == null)
|
||||||
|
{
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return counter;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Gets the price of all the items within {@link #orderList}.
|
||||||
|
* @return A double of the price of all the items.
|
||||||
|
*/
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
double price = 0;
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
if (orderList[i] != null)
|
||||||
|
{
|
||||||
|
price += orderList[i].getPrice();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return price;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Checks if the given number is a valid index (0 to {@link #arraySize}).
|
||||||
|
* @param i Index to check if it's valid.
|
||||||
|
* @return True/False based on if it's valid or not.
|
||||||
|
*/
|
||||||
|
public boolean isValidIndex(int i)
|
||||||
|
{
|
||||||
|
if (i < 9 && i >= 0)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Shifts all objects within {@link #orderList} so that there are no gaps in between items in the array.
|
||||||
|
*/
|
||||||
|
public void normalise()
|
||||||
|
{
|
||||||
|
Furniture newOrderList[] = new Furniture[9];
|
||||||
|
int arrayCounter = 0;
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
if (orderList[i] != null)
|
||||||
|
{
|
||||||
|
newOrderList[arrayCounter] = orderList[i];
|
||||||
|
arrayCounter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
orderList = newOrderList;
|
||||||
|
}
|
||||||
|
}
|
30
src/rofaapp/ItemTable.java
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
public abstract class ItemTable extends Furniture{
|
||||||
|
|
||||||
|
private int diameter;
|
||||||
|
|
||||||
|
//Getters
|
||||||
|
public int getDiameter(){return diameter;}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param d Diameter of the table.
|
||||||
|
* @return Returns if the value is valid (does this within the form).
|
||||||
|
*/
|
||||||
|
//Setters
|
||||||
|
public boolean setDiameter(int d)
|
||||||
|
{
|
||||||
|
diameter = d;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return {@link #diameter}^2
|
||||||
|
*/
|
||||||
|
//Implement abstract methods
|
||||||
|
public int getUnits()
|
||||||
|
{
|
||||||
|
return diameter * diameter;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
30
src/rofaapp/ItemTableChrome.java
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
public class ItemTableChrome extends ItemTable{
|
||||||
|
|
||||||
|
private final double basePrice = 35.00;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param id ID of the item (doesn't have to be unique)
|
||||||
|
* @param tw Wood type of the item.
|
||||||
|
* @param ii Icon of the item.
|
||||||
|
* @param d Diameter of the item.
|
||||||
|
*/
|
||||||
|
//Constructer
|
||||||
|
ItemTableChrome(int id, TypeWood tw, ImageIcon ii, int d)
|
||||||
|
{
|
||||||
|
setName("Chrome Table");
|
||||||
|
setId(id);
|
||||||
|
setWood(tw);
|
||||||
|
setIcon(ii);
|
||||||
|
setDiameter(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Implement abstract methods
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
return ((getDiameter() * getDiameter()) * getWood().getPrice()) + basePrice;
|
||||||
|
}
|
||||||
|
}
|
34
src/rofaapp/ItemTableWood.java
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
|
||||||
|
public class ItemTableWood extends ItemTable {
|
||||||
|
|
||||||
|
private final double basePrice = 45.00;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor for the Wood Table.
|
||||||
|
* @param id Given ID (doesn't have to be unique).
|
||||||
|
* @param tw Type of wood the item is.
|
||||||
|
* @param ii Icon of the item.
|
||||||
|
* @param d Diameter of the item.
|
||||||
|
*/
|
||||||
|
//Constructer
|
||||||
|
ItemTableWood(int id, TypeWood tw, ImageIcon ii, int d)
|
||||||
|
{
|
||||||
|
setName("Wood Table");
|
||||||
|
setId(id);
|
||||||
|
setWood(tw);
|
||||||
|
setIcon(ii);
|
||||||
|
setDiameter(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Implement abstract methods
|
||||||
|
/**
|
||||||
|
* @return Price of the table
|
||||||
|
*/
|
||||||
|
public double getPrice()
|
||||||
|
{
|
||||||
|
return ((getDiameter() * getDiameter()) * getWood().getPrice()) + basePrice;
|
||||||
|
}
|
||||||
|
}
|
564
src/rofaapp/MainWindow.java
Normal file
@ -0,0 +1,564 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
import javax.swing.tree.DefaultMutableTreeNode;
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import java.awt.event.MouseAdapter;
|
||||||
|
import java.awt.event.MouseEvent;
|
||||||
|
import java.awt.event.MouseListener;
|
||||||
|
import java.io.*;
|
||||||
|
|
||||||
|
public class MainWindow extends JFrame implements ActionListener, MouseListener{
|
||||||
|
|
||||||
|
//Order Elements
|
||||||
|
private ItemOrder currentOrder;
|
||||||
|
private int currentSelected = -1;
|
||||||
|
|
||||||
|
//Main Panels
|
||||||
|
private JPanel menuPanel;
|
||||||
|
private JPanel gridPanel;
|
||||||
|
private JPanel summaryPanel;
|
||||||
|
private JPanel itemSummaryPanel;
|
||||||
|
|
||||||
|
//Image Panels
|
||||||
|
private JPanel[][] imagepanels;
|
||||||
|
|
||||||
|
//Labels
|
||||||
|
JLabel gridTotalPriceLabel;
|
||||||
|
JLabel summaryTitleLabel;
|
||||||
|
|
||||||
|
//Buttons
|
||||||
|
JButton menuAddItemButton;
|
||||||
|
JButton menuSaveButton;
|
||||||
|
JButton menuLoadButton;
|
||||||
|
JButton menuClearButton;
|
||||||
|
JButton menuSummaryButton;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor that initialises the window and it's properties (such as title, size, and it's layout). Calls {@link #initPanels()} to initialise the panels shown in the grid. Also creates a new instance of the itemorder.
|
||||||
|
*/
|
||||||
|
MainWindow()
|
||||||
|
{
|
||||||
|
currentOrder = new ItemOrder();
|
||||||
|
setTitle("ROFA Furniture");
|
||||||
|
setResizable(false);
|
||||||
|
setSize(new Dimension(1280, 720));
|
||||||
|
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||||
|
setLocationRelativeTo(null);
|
||||||
|
setLayout(new BorderLayout());
|
||||||
|
initPanels();
|
||||||
|
setVisible(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialises all four panels used in the main window (creates instances of them, their sizes and adds them to the master panel).
|
||||||
|
*/
|
||||||
|
private void initPanels()
|
||||||
|
{
|
||||||
|
/////////////////////////////
|
||||||
|
//Menu Panel initialisation//
|
||||||
|
/////////////////////////////
|
||||||
|
|
||||||
|
//Panel
|
||||||
|
menuPanel = new JPanel();
|
||||||
|
|
||||||
|
//Labels
|
||||||
|
JLabel menuTitleLabel = new JLabel("ROFC");
|
||||||
|
|
||||||
|
//Buttons
|
||||||
|
menuAddItemButton = new JButton("<html><center>Add<br>Furniture</center></html>"); //I hate html. (html looks different on linux? how cool!)
|
||||||
|
menuClearButton = new JButton("Clear All");
|
||||||
|
menuSaveButton = new JButton("Save");
|
||||||
|
menuLoadButton = new JButton("Load");
|
||||||
|
menuSummaryButton = new JButton("Summary");
|
||||||
|
|
||||||
|
//Apply Settings
|
||||||
|
//Panel
|
||||||
|
menuPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 2000, 40));
|
||||||
|
menuPanel.setPreferredSize(new Dimension(250, 0));
|
||||||
|
menuPanel.setBackground(Color.DARK_GRAY);
|
||||||
|
menuPanel.setVisible(true);
|
||||||
|
add(menuPanel, BorderLayout.LINE_START);
|
||||||
|
|
||||||
|
//Labels
|
||||||
|
menuTitleLabel.setFont(new Font(menuTitleLabel.getFont().getName(), Font.BOLD, 72));
|
||||||
|
menuTitleLabel.setForeground(Color.WHITE);
|
||||||
|
menuPanel.add(menuTitleLabel);
|
||||||
|
|
||||||
|
//Buttons
|
||||||
|
Font buttonFont = new Font(menuAddItemButton.getFont().getName(), Font.BOLD, 28);
|
||||||
|
Dimension largeButtonDimension = new Dimension(165, 90);
|
||||||
|
Dimension regularButtonDimension = new Dimension(165, 50);
|
||||||
|
//Add Item
|
||||||
|
menuAddItemButton.setFont(buttonFont);
|
||||||
|
menuAddItemButton.setPreferredSize(largeButtonDimension);
|
||||||
|
menuAddItemButton.addActionListener(this);
|
||||||
|
menuPanel.add(menuAddItemButton);
|
||||||
|
//Clear
|
||||||
|
menuClearButton.setFont(buttonFont);
|
||||||
|
menuClearButton.setPreferredSize(regularButtonDimension);
|
||||||
|
menuClearButton.addActionListener(this);
|
||||||
|
menuPanel.add(menuClearButton);
|
||||||
|
//Save
|
||||||
|
menuSaveButton.setFont(buttonFont);
|
||||||
|
menuSaveButton.setPreferredSize(regularButtonDimension);
|
||||||
|
menuSaveButton.addActionListener(this);
|
||||||
|
menuPanel.add(menuSaveButton);
|
||||||
|
//Load
|
||||||
|
menuLoadButton.setFont(buttonFont);
|
||||||
|
menuLoadButton.setPreferredSize(regularButtonDimension);
|
||||||
|
menuLoadButton.addActionListener(this);
|
||||||
|
menuPanel.add(menuLoadButton);
|
||||||
|
//Summary
|
||||||
|
menuSummaryButton.setFont(buttonFont);
|
||||||
|
menuSummaryButton.setPreferredSize(regularButtonDimension);
|
||||||
|
menuSummaryButton.addActionListener(this);
|
||||||
|
menuPanel.add(menuSummaryButton);
|
||||||
|
|
||||||
|
/////////////////////////////
|
||||||
|
//Grid Panel initialisation//
|
||||||
|
/////////////////////////////
|
||||||
|
|
||||||
|
//Main Panel
|
||||||
|
gridPanel = new JPanel();
|
||||||
|
|
||||||
|
//Image Panels
|
||||||
|
imagepanels = new JPanel[3][3];
|
||||||
|
for (int i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
imagepanels[i][j] = new JPanel();
|
||||||
|
imagepanels[i][j].setPreferredSize(new Dimension(205, 205));
|
||||||
|
imagepanels[i][j].setBackground(Color.white);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Label
|
||||||
|
gridTotalPriceLabel = new JLabel("Total Price: £0.00");
|
||||||
|
|
||||||
|
//Apply Settings
|
||||||
|
//Panel
|
||||||
|
gridPanel.setBackground(Color.black);
|
||||||
|
add(gridPanel, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
//Image Panels
|
||||||
|
for (int i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
gridPanel.add(imagepanels[i][j]);
|
||||||
|
imagepanels[i][j].addMouseListener(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Label
|
||||||
|
gridTotalPriceLabel.setFont(new Font(gridTotalPriceLabel.getFont().getName(), Font.BOLD, 30));
|
||||||
|
gridTotalPriceLabel.setForeground(Color.white);
|
||||||
|
gridPanel.add(gridTotalPriceLabel);
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
//Summary Panel initialisation//
|
||||||
|
////////////////////////////////
|
||||||
|
|
||||||
|
//Panel
|
||||||
|
summaryPanel = new JPanel();
|
||||||
|
|
||||||
|
//Label
|
||||||
|
summaryTitleLabel = new JLabel("Summary");
|
||||||
|
|
||||||
|
//Apply Settings
|
||||||
|
//Panel
|
||||||
|
summaryPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 2000, 40));
|
||||||
|
summaryPanel.setBackground(Color.gray);
|
||||||
|
summaryPanel.setPreferredSize(new Dimension(350, 0));
|
||||||
|
add(summaryPanel, BorderLayout.LINE_END);
|
||||||
|
|
||||||
|
//Label
|
||||||
|
summaryTitleLabel.setForeground(Color.WHITE);
|
||||||
|
summaryTitleLabel.setFont(new Font(summaryTitleLabel.getFont().getName(), Font.BOLD, 32));
|
||||||
|
summaryPanel.add(summaryTitleLabel);
|
||||||
|
|
||||||
|
|
||||||
|
/////////////////////////////////////
|
||||||
|
//Item Summary Panel initialisation//
|
||||||
|
/////////////////////////////////////
|
||||||
|
|
||||||
|
//Panel
|
||||||
|
itemSummaryPanel = new JPanel();
|
||||||
|
|
||||||
|
//Label
|
||||||
|
//All
|
||||||
|
/*itemSummaryItemNameLabel = new JLabel();
|
||||||
|
itemSummaryItemImageLabel = new JLabel();
|
||||||
|
itemSummaryItemIDLabel = new JLabel();
|
||||||
|
itemSummaryItemWoodLabel = new JLabel();
|
||||||
|
itemSummaryItemPriceLabel = new JLabel();
|
||||||
|
//Chair
|
||||||
|
itemSummaryItemArmrestLabel = new JLabel();
|
||||||
|
//Desk
|
||||||
|
itemSummaryItemDrawsLabel = new JLabel();
|
||||||
|
itemSummaryItemHeightLabel = new JLabel();
|
||||||
|
itemSummaryItemWidthLabel = new JLabel();
|
||||||
|
itemSummaryItemDepthLabel = new JLabel();
|
||||||
|
//Table
|
||||||
|
itemSummaryItemChromeLabel = new JLabel();
|
||||||
|
itemSummartItemDiameterLabel = new JLabel();*/
|
||||||
|
|
||||||
|
//Apply Settings
|
||||||
|
itemSummaryPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 2000, 20));
|
||||||
|
itemSummaryPanel.setBackground(Color.gray);
|
||||||
|
itemSummaryPanel.setPreferredSize(new Dimension(350, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Iterates through each of the panels within the {@link #gridPanel} and calls {@link #setItemPanel(JPanel, Furniture)} to update each panel with the correct image and data. After the iteration, calls {@link #updateSummaryPanel()} to finalise.
|
||||||
|
*/
|
||||||
|
private void updateItemOrder()
|
||||||
|
{
|
||||||
|
int count = 0;
|
||||||
|
for (int i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
setItemPanel(imagepanels[i][j], currentOrder.get(count));
|
||||||
|
gridTotalPriceLabel.setText("Total Price: £" + String.format("%.2f",currentOrder.getPrice()));
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
updateSummaryPanel();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the given panel to the given furniture object, meaning the panel contains the icon of the given furniture.
|
||||||
|
* @param j JPanel to set.
|
||||||
|
* @param f Furniture to set.
|
||||||
|
*/
|
||||||
|
private void setItemPanel(JPanel j, Furniture f)
|
||||||
|
{
|
||||||
|
if (f != null)
|
||||||
|
{
|
||||||
|
j.removeAll();
|
||||||
|
j.add(new JLabel(f.getIcon()));
|
||||||
|
j.revalidate();
|
||||||
|
j.repaint();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
j.removeAll();
|
||||||
|
j.revalidate();
|
||||||
|
j.repaint();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the current selected, and highlighed, {@link #imagepanels}.
|
||||||
|
* @param x X coordinate of the {@link #imagepanels}.
|
||||||
|
* @param y Y coordinate of the {@link #imagepanels}.
|
||||||
|
* @param index The index of the item in the {@link #currentOrder}.
|
||||||
|
*/
|
||||||
|
private void changeSelectedPanel(int x, int y, int index)
|
||||||
|
{
|
||||||
|
//Reset all panel colours
|
||||||
|
for (int i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
imagepanels[i][j].setBackground(Color.white);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (index == currentSelected)
|
||||||
|
{
|
||||||
|
itemSummaryPanel.removeAll();
|
||||||
|
remove(itemSummaryPanel);
|
||||||
|
add(summaryPanel, BorderLayout.LINE_END);
|
||||||
|
invalidate();
|
||||||
|
validate();
|
||||||
|
repaint();
|
||||||
|
currentSelected = -1;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
imagepanels[x][y].setBackground(Color.GRAY);
|
||||||
|
if (currentOrder.get(index) != null)
|
||||||
|
{
|
||||||
|
itemSummaryPanel.removeAll();
|
||||||
|
remove(summaryPanel);
|
||||||
|
updateItemSummaryPanel(index);
|
||||||
|
add(itemSummaryPanel, BorderLayout.LINE_END);
|
||||||
|
invalidate();
|
||||||
|
validate();
|
||||||
|
repaint();
|
||||||
|
}
|
||||||
|
currentSelected = index;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Updates and redraws the total price label at the bottom of the window.
|
||||||
|
*/
|
||||||
|
private void updateSummaryPanel()
|
||||||
|
{
|
||||||
|
JLabel[] itemLabels = new JLabel[8];
|
||||||
|
//Remove all previous labels.
|
||||||
|
summaryPanel.removeAll();
|
||||||
|
summaryPanel.add(summaryTitleLabel);
|
||||||
|
//Add label if not null.
|
||||||
|
for (int i = 0; i < 9; i++)
|
||||||
|
{
|
||||||
|
if (currentOrder.get(i) != null)
|
||||||
|
{
|
||||||
|
JLabel jtemp = new JLabel(currentOrder.get(i).getName() + " : £" + String.format("%.2f", currentOrder.get(i).getPrice()));
|
||||||
|
jtemp.setForeground(Color.white);
|
||||||
|
summaryPanel.add(jtemp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Changes the elements within the {@link #itemSummaryPanel} depending on what the user has clicked.
|
||||||
|
* @param index The index of the panel/item within the order.
|
||||||
|
*/
|
||||||
|
private void updateItemSummaryPanel(int index)
|
||||||
|
{
|
||||||
|
//Fonts
|
||||||
|
Font titleFont = new Font(new JLabel().getFont().getName(), Font.BOLD, 38);
|
||||||
|
Font secondFont = new Font(new JLabel().getFont().getName(), Font.PLAIN, 28);
|
||||||
|
//Dimensions (Image sizes)
|
||||||
|
Dimension tableSize = new Dimension(300, 239);
|
||||||
|
Dimension deskSize = new Dimension(300, 196);
|
||||||
|
Dimension chairSize = new Dimension(200, 266);
|
||||||
|
//Get the instance of the object and depending on which one, add labels and other elements to panel.
|
||||||
|
if (currentOrder.get(index) instanceof ItemTable)
|
||||||
|
{
|
||||||
|
ItemTable it = (ItemTable)currentOrder.get(index);
|
||||||
|
//Labels
|
||||||
|
JLabel nameLabel = new JLabel(it.getName());
|
||||||
|
nameLabel.setFont(titleFont);
|
||||||
|
JLabel imageLabel = new JLabel(ItemIcon.resize(it.getIcon(), tableSize));
|
||||||
|
JLabel chromeLabel = new JLabel("Chrome: " + ((currentOrder.get(index) instanceof ItemTableChrome) ? "True" : "False"));
|
||||||
|
chromeLabel.setFont(secondFont);
|
||||||
|
JLabel woodLabel = new JLabel("Wood: " + it.getWood().toString());
|
||||||
|
woodLabel.setFont(secondFont);
|
||||||
|
JLabel diameterLabel = new JLabel("Diameter : " + it.getDiameter());
|
||||||
|
diameterLabel.setFont(secondFont);
|
||||||
|
|
||||||
|
//Add to panel
|
||||||
|
itemSummaryPanel.add(nameLabel);
|
||||||
|
itemSummaryPanel.add(imageLabel);
|
||||||
|
itemSummaryPanel.add(woodLabel);
|
||||||
|
itemSummaryPanel.add(chromeLabel);
|
||||||
|
itemSummaryPanel.add(diameterLabel);
|
||||||
|
}
|
||||||
|
else if (currentOrder.get(index) instanceof ItemDesk)
|
||||||
|
{
|
||||||
|
ItemDesk id = (ItemDesk)currentOrder.get(index);
|
||||||
|
//Labels
|
||||||
|
JLabel nameLabel = new JLabel(id.getName());
|
||||||
|
nameLabel.setFont(titleFont);
|
||||||
|
JLabel imageLabel = new JLabel(ItemIcon.resize(id.getIcon(), deskSize));
|
||||||
|
JLabel woodLabel = new JLabel("Wood: " + id.getWood().toString());
|
||||||
|
woodLabel.setFont(secondFont);
|
||||||
|
JLabel drawsLabel = new JLabel("Draws: " + id.getDraws());
|
||||||
|
drawsLabel.setFont(secondFont);
|
||||||
|
JLabel heightLabel = new JLabel("Height : " + id.getHeight());
|
||||||
|
heightLabel.setFont(secondFont);
|
||||||
|
JLabel widthLabel = new JLabel("Width: " + id.getWidth());
|
||||||
|
widthLabel.setFont(secondFont);
|
||||||
|
JLabel depthLabel = new JLabel("Depth: " + id.getDepth());
|
||||||
|
depthLabel.setFont(secondFont);
|
||||||
|
|
||||||
|
//Add to panel
|
||||||
|
itemSummaryPanel.add(nameLabel);
|
||||||
|
itemSummaryPanel.add(imageLabel);
|
||||||
|
itemSummaryPanel.add(woodLabel);
|
||||||
|
itemSummaryPanel.add(drawsLabel);
|
||||||
|
itemSummaryPanel.add(heightLabel);
|
||||||
|
itemSummaryPanel.add(widthLabel);
|
||||||
|
itemSummaryPanel.add(depthLabel);
|
||||||
|
}
|
||||||
|
else if (currentOrder.get(index) instanceof ItemChair)
|
||||||
|
{
|
||||||
|
ItemChair ic = (ItemChair)currentOrder.get(index);
|
||||||
|
//Labels
|
||||||
|
JLabel nameLabel = new JLabel(ic.getName());
|
||||||
|
nameLabel.setFont(titleFont);
|
||||||
|
JLabel imageLabel = new JLabel(ItemIcon.resize(ic.getIcon(), chairSize));
|
||||||
|
imageLabel.setFont(secondFont);
|
||||||
|
JLabel woodLabel = new JLabel("Wood: " + ic.getWood().toString());
|
||||||
|
woodLabel.setFont(secondFont);
|
||||||
|
JLabel armLabel = new JLabel("Armrests: " + ((currentOrder.get(index) instanceof ItemArmChair) ? "True" : "False"));
|
||||||
|
armLabel.setFont(secondFont);
|
||||||
|
|
||||||
|
//Add to panel
|
||||||
|
itemSummaryPanel.add(nameLabel);
|
||||||
|
itemSummaryPanel.add(imageLabel);
|
||||||
|
itemSummaryPanel.add(woodLabel);
|
||||||
|
itemSummaryPanel.add(armLabel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void actionPerformed(ActionEvent e)
|
||||||
|
{
|
||||||
|
//Category clicked: Button (Checks if the object clicked is of an instance of Button)
|
||||||
|
if (e.getSource() instanceof JButton)
|
||||||
|
{
|
||||||
|
if (e.getSource().equals(menuAddItemButton))
|
||||||
|
{
|
||||||
|
AddItemWindow aiw = new AddItemWindow(1, currentOrder, new TypeWood[] {TypeWood.WOOD_OAK, TypeWood.WOOD_WALNUT});
|
||||||
|
//DO CHECKS
|
||||||
|
currentOrder = aiw.getUpdatedOrder();
|
||||||
|
updateItemOrder();
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(menuClearButton))
|
||||||
|
{
|
||||||
|
//Show dialog to make sure we get confirmation of them clearing the object
|
||||||
|
if (JOptionPane.showConfirmDialog(this, "Would you like to clear all order details?", "Clear Order?", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION)
|
||||||
|
{
|
||||||
|
//Delete all items in order.
|
||||||
|
currentOrder.deleteAll();
|
||||||
|
//If a panel is selected, de-select it.
|
||||||
|
if (currentSelected != -1)
|
||||||
|
{
|
||||||
|
changeSelectedPanel(0, 0, currentSelected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//Update GUI elements.
|
||||||
|
updateItemOrder();
|
||||||
|
updateSummaryPanel();
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(menuLoadButton))
|
||||||
|
{
|
||||||
|
//Create file chooser for the user to select where to load
|
||||||
|
//File chooser opens in the executed directory
|
||||||
|
JFileChooser jfc = new JFileChooser(new File(".").getAbsolutePath());
|
||||||
|
if (jfc.showDialog(this, "Load") == JFileChooser.APPROVE_OPTION)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
FileInputStream fileInput = new FileInputStream(jfc.getSelectedFile());
|
||||||
|
ObjectInputStream objectInput = new ObjectInputStream(fileInput);
|
||||||
|
currentOrder = (ItemOrder) objectInput.readObject();
|
||||||
|
objectInput.close();
|
||||||
|
fileInput.close();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
updateItemOrder();
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(menuSaveButton)) {
|
||||||
|
//Create file chooser for the user to select where to save
|
||||||
|
//File chooser opens in the executed directory
|
||||||
|
JFileChooser jfc = new JFileChooser(new File(".").getAbsolutePath());
|
||||||
|
if (jfc.showDialog(this, "Save") == JFileChooser.APPROVE_OPTION)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
//Create the file and object output
|
||||||
|
FileOutputStream file = new FileOutputStream(jfc.getSelectedFile().getAbsolutePath() + ".dat");
|
||||||
|
ObjectOutputStream fileOutput = new ObjectOutputStream(file);
|
||||||
|
//Write the object to the file
|
||||||
|
fileOutput.writeObject(currentOrder);
|
||||||
|
//Close the file
|
||||||
|
fileOutput.close();
|
||||||
|
file.close();
|
||||||
|
} catch (Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (e.getSource().equals(menuSummaryButton))
|
||||||
|
{
|
||||||
|
//This deselects anything currently selected, and makes the item summary show.
|
||||||
|
changeSelectedPanel(0, 0, currentSelected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseClicked(MouseEvent e) {
|
||||||
|
if (e.getSource() instanceof JPanel)
|
||||||
|
{
|
||||||
|
int counter = 0;
|
||||||
|
for (int i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
if (e.getSource().equals(imagepanels[i][j]))
|
||||||
|
{
|
||||||
|
if (e.getButton() == 1)
|
||||||
|
{
|
||||||
|
//Left Click
|
||||||
|
if (currentOrder.get(counter) != null)
|
||||||
|
{
|
||||||
|
changeSelectedPanel(i, j, counter);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
JOptionPane.showMessageDialog(this, "There is no item in the selected box.", "No Item Found!", JOptionPane.INFORMATION_MESSAGE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (e.getButton() == 2)
|
||||||
|
{
|
||||||
|
//Middle Click
|
||||||
|
//Edit item
|
||||||
|
if (currentOrder.get(counter) != null)
|
||||||
|
{
|
||||||
|
AddItemWindow aiw = new AddItemWindow(AddItemWindow.getTabValue(currentOrder.get(counter)), currentOrder, new TypeWood[] {TypeWood.WOOD_OAK, TypeWood.WOOD_WALNUT}, counter, currentOrder.get(counter));
|
||||||
|
currentOrder = aiw.getUpdatedOrder();
|
||||||
|
}
|
||||||
|
updateItemOrder();
|
||||||
|
}
|
||||||
|
else if (e.getButton() == 3)
|
||||||
|
{
|
||||||
|
//Right Click
|
||||||
|
//Delete item
|
||||||
|
if (currentOrder.get(counter) != null)
|
||||||
|
{
|
||||||
|
//Ask user if they want to delete the item from the order.
|
||||||
|
if (JOptionPane.showConfirmDialog(this, "Would you like to delete this order: " + currentOrder.get(counter).getName() + "?", "Clear Item?", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION)
|
||||||
|
{
|
||||||
|
//If they press yes, delete the order.
|
||||||
|
currentOrder.del(counter);
|
||||||
|
//Deselect all panels.
|
||||||
|
changeSelectedPanel(i, j, currentSelected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
JOptionPane.showMessageDialog(this, "There is no item to delete here.", "No Item Found!", JOptionPane.INFORMATION_MESSAGE);
|
||||||
|
}
|
||||||
|
//Update GUI elements.
|
||||||
|
updateItemOrder();
|
||||||
|
//Do nothing if they don't accept the delete.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mousePressed(MouseEvent e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseReleased(MouseEvent e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseEntered(MouseEvent e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseExited(MouseEvent e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
14
src/rofaapp/ROFCMain.java
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import javax.swing.*;
|
||||||
|
|
||||||
|
public class ROFCMain
|
||||||
|
{
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
//Main Window open.
|
||||||
|
//All logic is done within this window.
|
||||||
|
MainWindow mw = new MainWindow();
|
||||||
|
}
|
||||||
|
}
|
21
src/rofaapp/ROFCTests.java
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
public class ROFCTests {
|
||||||
|
//Test main to test all different classes.
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
ItemTableChrome itc = new ItemTableChrome(1, TypeWood.WOOD_OAK, ItemIcon.TABLE_ICON_1, 50);
|
||||||
|
ItemTableWood itw = new ItemTableWood(2, TypeWood.WOOD_WALNUT, ItemIcon.TABLE_ICON_2, 150);
|
||||||
|
ItemDesk id1 = new ItemDesk(3, TypeWood.WOOD_OAK, ItemIcon.DESK_ICON_3, 3, 20, 20);
|
||||||
|
ItemDesk id2 = new ItemDesk(4, TypeWood.WOOD_WALNUT, ItemIcon.DESK_ICON_1, 1, 20, 50);
|
||||||
|
ItemChair ic = new ItemChair(5, TypeWood.WOOD_WALNUT, ItemIcon.CHAIR_ICON_2);
|
||||||
|
ItemArmChair iac = new ItemArmChair(6, TypeWood.WOOD_OAK, ItemIcon.CHAIR_ICON_1);
|
||||||
|
|
||||||
|
System.out.println(itc.toString() + " | " + itc.getPrice());
|
||||||
|
System.out.println(itw.toString() + " | " + itw.getPrice());
|
||||||
|
System.out.println(id1.toString() + " | " + id1.getPrice());
|
||||||
|
System.out.println(id2.toString() + " | " + id2.getPrice());
|
||||||
|
System.out.println(ic.toString() + " | " + ic.getPrice());
|
||||||
|
System.out.println(iac.toString() + " | " + iac.getPrice());
|
||||||
|
}
|
||||||
|
}
|
35
src/rofaapp/TypeWood.java
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package rofaapp;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
public class TypeWood implements Serializable{
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
private double price;
|
||||||
|
|
||||||
|
//Types of Wood (Constants)
|
||||||
|
public static final TypeWood WOOD_OAK = new TypeWood("Oak", 0.04);
|
||||||
|
public static final TypeWood WOOD_WALNUT = new TypeWood("Walnut", 0.03);
|
||||||
|
|
||||||
|
//Constructor
|
||||||
|
TypeWood(String n, double p)
|
||||||
|
{
|
||||||
|
name = n;
|
||||||
|
price = p;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Getters
|
||||||
|
public String getName(){return name;}
|
||||||
|
public double getPrice(){return price;}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the name of the wood type.
|
||||||
|
* @return {@link #name}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|