/* 	J_TEST.java	Title:			Virtual Control Surface	Author:			root	Description:	Copyright © 2001 Jason LamportAll Rights Reserved*/package com.strangelight.v4control;//	import javax.swing.*;//	import com.apple.macos.*;import java.lang.reflect.*;import java.awt.*;import com.apple.jdirect.*;import com.apple.mrj.jdirect.*;interface testLib_I extends SharedLibrary {	static Object libraryInstance = JDirectLinker.loadLibrary ("testLib");}public class J_TEST implements testLib_I {	// Main entry point	static public void main(String[] args) {		byte b = 0x40;	//	'@' symbol						try {			System.out.println( "foo" + ( (char) b ) + "bar" );		} catch (Exception e) {			e.printStackTrace();		}	}	}/* OLDER STUFF:	private native static int get_sx();	private native static int get_x();			System.out.println( get_sx() );			System.out.println( get_x() );*/