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
| Il secondo documento |
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
| /** | |
| * Elenca i temi disponibili nel sistema | |
| * Permette di scegliere il tema preferito e salvarlo nelle opzioni | |
| * Se il tema settato nelle opzioni non è disponibile sceglie automaticamente Nimbus | |
| * Se si passa il nome del tema nei parametri di avvia si bypassa la scelta del tema settato nelle opzioni. | |
| */ | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| import java.io.FileReader; |
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
| /** | |
| * La classe converte da un sistema decimale ad un sistema qualsiasi e viceversa | |
| * | |
| * Autore: Antonio Bianco | |
| */ | |
| public class Conversioni implements Runnable | |
| { | |
| public static final String ERRORE = "Err"; | |
| public static final long MAX_DEC = 9999999999999990L; // Numero decimale più grande da convertire |
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
| /** | |
| * La classe ArtHTML converte in'immagine in una tabella HTML | |
| * | |
| * Autore Bianco Antonio | |
| * Versione 1.0 | |
| */ | |
| import java.util.Vector; | |
| import javax.swing.JFileChooser; | |
| import javax.swing.JComponent; | |
| import javax.swing.JOptionPane; |
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
| /** | |
| * La classe calcola l'energia cinetica ed aggiorna automaticamente i valori incoerenti. | |
| * | |
| * Autore: Antonio Bianco | |
| * Creazione: 08/09/2012 | |
| * Ultima modifica: 09/09/2012 | |
| * Versione: 1.0 stable | |
| */ | |
| public class CalcoloEnergiaCinetica |
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
| import java.awt.datatransfer.*; | |
| import java.awt.*; | |
| public class JClipboard implements ClipboardOwner | |
| { | |
| /** | |
| * Incolla nella Clipboard | |
| */ | |
| public void toClipboard(String contenuto) | |
| { |
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
| /** | |
| * Il mouse slitta come se non avesse inerzia | |
| * | |
| * Autore: Antonio Bianco | |
| * Versione: |0| | |
| */ | |
| import java.awt.Dimension; | |
| import java.awt.Toolkit; | |
| import java.awt.Robot; // Controlla il mouse | |
| import java.awt.MouseInfo; // Leggi le informazioni del mouse |
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
| import java.awt.datatransfer.*; | |
| import java.awt.*; | |
| public class JClipboard implements ClipboardOwner | |
| { | |
| /** | |
| * Incolla nella Clipboard | |
| */ | |
| public void toClipboard(String contenuto) | |
| { |
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
| import java.awt.datatransfer.*; | |
| import java.awt.*; | |
| public class JClipboard implements ClipboardOwner | |
| { | |
| /** | |
| * Incolla nella Clipboard | |
| */ | |
| public void toClipboard(String contenuto) | |
| { |
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
| /** | |
| * La classe è un demone che effettua la sincronizzazione dei file | |
| * | |
| * @author Antonio Bianco | |
| * creazione: 02/10/2012 | |
| * ultima modifica: 03/10/2012 | |
| */ | |
| import java.io.File; | |
| import java.nio.file.Files; | |
| import static java.nio.file.StandardCopyOption.*; |
OlderNewer