blob: 5cecd3b12b428195f3b3e2de3f8c3c8e67795cb8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Angelo Zerr and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.akrogen.tkui.css.swt.examples.chat;
import org.akrogen.tkui.css.swt.resources.CSSSWTResources;
public class ChatWithOsxStyle extends AbstractChatExample {
public ChatWithOsxStyle() {
super(CSSSWTResources.getSWTOsx());
}
public static void main(String[] args) {
ChatWithOsxStyle testOsx = new ChatWithOsxStyle();
try {
testOsx.display();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}