Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I hope everything is clear now. I need help for my Java Project. It is NOT AT AL

ID: 3885022 • Letter: I

Question

I hope everything is clear now. I need help for my Java Project. It is NOT AT ALL necessary for you to answer the question in 30 mins or 1 hour or 2 hrs. YOU CAN TAKE 24 or 48 or even 72 hrs to answer this question. I have already completed HALF of the assignment and you just need to complete the other half. To find the project description go to: http://www.cs.umd.edu/class/fall2017/cmsc132/content/projects/WebPageGen/WebPageGen.html. If it asks for Username and Password here it is.

Username: cmsc132 Password: F17Lambda

In the project description the most important part is the javadoc. This is where all the details are given.

To find the files that we were provided with the assignment go to this link and the solution also of the first half

Now I am also providing you the text files you will be needing to complete the work. The classes you need to implement: ListElement. ParagraphElement, TableElement and WebPage. You just have to implement the 4 of these, I have already provided you with 6 classes. You can find them at:

https://search.yahoo.com/search?p=cmsc132+webpage+projects&fr=yfp-t&fp=1&toggle=1&cop=mss&ei=UTF-8. Then just click on the first link and you will find everything

Download both the zip files as the first one contains text files that were needed to create the first 6 classes and the second one the solution for the 6 classes.

pubListElementTest1:

<ul id="ul1">
<li>
Superman
</li>
<li>
<a id="a2" href="http://www.cs.umd.edu">UMD</a>
</li>
</ul>
SecondElement
<ol id="ol3" reversed>
<li>
Superman
</li>
<li>
Batman
</li>
</ol>

EndTest

pubParagraphElementTest1:

<p id="p1">
Fear the turtle
<img id="img2" src="testudo.jpg" width="84" height="111" alt="Testudo Image">
<a id="a3" href="http://www.cs.umd.edu">UMD</a>
</p>
SecondElement
<p>
Fear the turtle
<img src="testudo.jpg" width="84" height="111" alt="Testudo Image">
</p>

EndTest

pubTableTest1:

<table id="table1" border="1">
<tr><td>John</td><td>Laura</td></tr>
<tr><td>Rose</td><td></td></tr>
</table>

EndTest

pubWebPageTest1:

<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8"/>
<title>Example1</title>
</head>
<body>
</body>
</html>

EndTest

pubWebPageTest2:

<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8"/>
<title>Example1</title>
</head>
<body>
<h1>Introduction</h1>
<p>
Fear the turtle
<img src="testudo.jpg" width="200" height="300" alt="Testudo Image">
</p>
</body>
</html>

EndTest

pubWebPageTest3:

<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8"/>
<title>Example2</title>
</head>
<body>
<table>
<tr><td>Dog</td><td></td></tr>
<tr><td></td><td>Cat</td></tr>
</table>
<table>
<tr><td>Red</td><td>Blue</td></tr>
<tr><td>Green</td><td>Yellow</td></tr>
</table>
<ol>
</ol>
</body>
</html>
List Count: 1
Paragraph Count: 0
Table Count: 2
TableElement Utilization: 75.0

EndTest

Explanation / Answer

<ul id="ul1">
<li>
Superman
</li>
<li>
<a id="a2" href="http://www.cs.umd.edu">UMD</a>
</li>
</ul>
SecondElement
<ol id="ol3" reversed>
<li>
Superman
</li>
<li>
Batman
</li>
</ol>

<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8"/>
<title>Example2</title>
</head>
<body>
<table>
<tr><td>Dog</td><td></td></tr>
<tr><td></td><td>Cat</td></tr>
</table>
<table>
<tr><td>Red</td><td>Blue</td></tr>
<tr><td>Green</td><td>Yellow</td></tr>
</table>
<ol>
</ol>
</body>
</html>