Skip to content

Commit

Permalink
test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kubeusz committed Jan 30, 2013
1 parent 7a13fd0 commit 44508ed
Show file tree
Hide file tree
Showing 12 changed files with 8,834 additions and 0 deletions.
876 changes: 876 additions & 0 deletions categories_dental.html

Large diffs are not rendered by default.

883 changes: 883 additions & 0 deletions categories_edutainment.html

Large diffs are not rendered by default.

850 changes: 850 additions & 0 deletions categories_gay_lesbian.html

Large diffs are not rendered by default.

893 changes: 893 additions & 0 deletions categories_integral.html

Large diffs are not rendered by default.

883 changes: 883 additions & 0 deletions categories_it_professional_services.html

Large diffs are not rendered by default.

887 changes: 887 additions & 0 deletions categories_news_producers.html

Large diffs are not rendered by default.

849 changes: 849 additions & 0 deletions categories_research.html

Large diffs are not rendered by default.

878 changes: 878 additions & 0 deletions categories_teachers.html

Large diffs are not rendered by default.

871 changes: 871 additions & 0 deletions categories_web_2_0.html

Large diffs are not rendered by default.

868 changes: 868 additions & 0 deletions categories_wellness.html

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions src/main/java/sem2/iwi/gui/GettingTweets.form
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" ?>

<Form version="1.3" maxVersion="1.8" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<AuxValues>
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
</AuxValues>

<Layout>
<DimensionLayout dim="0">
<Group type="103" groupAlignment="0" attributes="0">
<Group type="102" alignment="0" attributes="0">
<EmptySpace min="-2" pref="66" max="-2" attributes="0"/>
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
<EmptySpace pref="230" max="32767" attributes="0"/>
</Group>
</Group>
</DimensionLayout>
<DimensionLayout dim="1">
<Group type="103" groupAlignment="0" attributes="0">
<Group type="102" alignment="0" attributes="0">
<EmptySpace min="-2" pref="79" max="-2" attributes="0"/>
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
<EmptySpace pref="203" max="32767" attributes="0"/>
</Group>
</Group>
</DimensionLayout>
</Layout>
<SubComponents>
<Component class="javax.swing.JLabel" name="jLabel1">
<Properties>
<Property name="text" type="java.lang.String" value="getting tweets"/>
</Properties>
</Component>
</SubComponents>
</Form>
53 changes: 53 additions & 0 deletions src/main/java/sem2/iwi/gui/GettingTweets.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package sem2.iwi.gui;

/**
*
* @author kubeusz
*/
public class GettingTweets extends javax.swing.JPanel {

/**
* Creates new form GettingTweets
*/
public GettingTweets() {
initComponents();
}

/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {

jLabel1 = new javax.swing.JLabel();

jLabel1.setText("getting tweets");

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(66, 66, 66)
.addComponent(jLabel1)
.addContainerGap(230, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(79, 79, 79)
.addComponent(jLabel1)
.addContainerGap(203, Short.MAX_VALUE))
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel1;
// End of variables declaration//GEN-END:variables
}

0 comments on commit 44508ed

Please sign in to comment.