This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.nd.iekechuk.JavaClassParse; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Class { | |
private String course; | |
//private String credits; | |
private String crosslist; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.nd.iekechuk.JavaClassParse; | |
import java.io.*; | |
import java.net.MalformedURLException; | |
import java.util.ArrayList; | |
import org.w3c.dom.*; | |
import javax.xml.parsers.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<classes> | |
<department subject="Accounting"> | |
<tag>ACCT</tag> | |
<class course="ACCT20100"> | |
<name>Accountancy I</name> | |
<credits>3</credits> | |
<crosslist>true</crosslist> | |
<section number = "01"> |
NewerOlder