Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View kermado's full-sized avatar

Omar Kermad kermado

  • Loxwood, United Kingdom
View GitHub Profile
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of NVIDIA CORPORATION nor the names of its
@kermado
kermado / gist:2980843
Created June 24, 2012 00:59
Java Swing MVC Skeleton
public class MVCOutline {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
//@Override
public void run() {
new MVCOutline().create();
}
});
}