Skip to content

Commit

Permalink
Project Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineAmarir authored Feb 26, 2017
1 parent 44507b6 commit 6371749
Show file tree
Hide file tree
Showing 10 changed files with 1,100 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.amamarir</groupId>
<artifactId>edi-tva</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>edi-tva</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
76 changes: 76 additions & 0 deletions src/main/java/com/amamarir/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*******************************************************************************
* MIT License
*
* Copyright (c) 2017 Amine Amarir
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
******************************************************************************/
package com.amamarir;

import com.amamarir.edi_tva.Accueil;

/**
* @author amamarir
*
*/
public class Main {

public static void main(String[] args) {
// test();
new Accueil();
// new TvaTable();
// JFrame jf = new JFrame();
// jf.setContentPane(new DemoJFileChooser());
// jf.setVisible(true);
// jf.setSize(300, 250);
// jf.setResizable(false);
// jf.setLocationRelativeTo(null);
// jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

// private static void test(){
// DeclarationReleveDeduction drd = new DeclarationReleveDeduction();
// rd rr = new rd();
// drd.releveDeductions.rds.add(rr);
// rr.mp = new mp();
// rr.refF = new refF();
// jaxbObjectToXML(drd);
// }
//
// private static void jaxbObjectToXML(DeclarationReleveDeduction emp) {
//
// try {
// JAXBContext context = JAXBContext.newInstance(DeclarationReleveDeduction.class);
// Marshaller m = context.createMarshaller();
// //for pretty-print XML in JAXB
// m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
//
// // Write to System.out for debugging
// m.marshal(emp, System.out);
//
// // Write to File
// m.marshal(emp, new File("C:\\Users\\amari\\Desktop\\test.xml"));
// } catch (JAXBException e) {
// e.printStackTrace();
// }
// }

}
Loading

0 comments on commit 6371749

Please sign in to comment.