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
<?php | |
/* | |
Template Name: GoogleSearch | |
*/ | |
?> | |
<?php get_header(); ?> | |
<div id="content"> | |
<?php include_once(TEMPLATEPATH . '/topbanner.php'); ?> | |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
<div class="post clearfix" id="post-<?php the_ID(); ?>"> |
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 brokendish; | |
import java.util.ArrayList; | |
import java.util.Comparator; | |
public class TreeDataSort implements Comparator<NodeDataStruct>{ | |
public TreeDataSort(){ | |
super(); | |
} |
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 brokendish; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
public class NodeDataSet { | |
public ArrayList<NodeDataStruct> NodeDataSet(){ | |
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 brokendish; | |
public class NodeDataStruct { | |
private String hashcode; | |
private String node; | |
private String level; | |
private String index; | |
private String tekiyo; | |
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 brokendish; | |
import java.util.ArrayList; | |
public class PrefixDataSet { | |
public ArrayList<PrefixDataStruct> PrefixDataSet(){ | |
ArrayList<PrefixDataStruct> prefixData = new ArrayList<PrefixDataStruct>(); | |
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 brokendish; | |
public class PrefixDataStruct { | |
private String prefix; | |
private String cord; | |
private String index; | |
public String getPrefix() { | |
return prefix; | |
} |
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 brokendish; | |
public class AddDataModel { | |
private String aaa; | |
private String bbb; | |
private String ccc; | |
public String getaaa() { | |
return aaa; |
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 brokendish; | |
import java.awt.BorderLayout; | |
import java.awt.Container; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.JButton; | |
import javax.swing.JFrame; | |
import javax.swing.JLabel; |