Skip to content
Snippets Groups Projects
Commit d8849007 authored by Alexander Marinc's avatar Alexander Marinc
Browse files

No commit message

No commit message
parent 55e544a6
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 193 deletions
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ucc.viewapi</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.trolltech.qtjambi.juicBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.trolltech.qtjambi.juicBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.trolltech.qtjambi.juicBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
#Mon Jul 11 16:42:38 CEST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.5
#Mon Jul 11 16:42:38 CEST 2011
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources
resolveWorkspaceProjects=true
resourceFilterGoals=process-resources resources\:testResources
skipCompilerPlugin=true
version=1
<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>org.universAAL.ucc</groupId>
<artifactId>ucc.viewapi</artifactId>
<version>0.0.1</version>
<name/>
<description/>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.universAAL.middleware</groupId>
<artifactId>mw.data.representation</artifactId>
<version>0.3.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Activator>org.universAAL.ucc.viewapi.Activator</Bundle-Activator>
<Bundle-Description>${project.description}</Bundle-Description>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Private-Package>org.universAAL.ucc.viewapi.*</Private-Package>
<Export-Package>org.universAAL.ucc.viewapi.interfaces.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<name>Central Maven Repository</name>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshots</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>uaal</id>
<name>universAAL Repositories</name>
<url>http://depot.universaal.org/maven-repo/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>uaal-snapshots</id>
<name>universAAL Snapshot Repositories</name>
<url>http://depot.universaal.org/maven-repo/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
</project>
package org.universAAL.ucc.viewapi;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator{
public static BundleContext context=null;
public void start(BundleContext context) throws Exception {
Activator.context=context;
}
public void stop(BundleContext arg0) throws Exception {
}
}
package org.universAAL.ucc.viewapi.interfaces;
/**
* @author Alex
* @version 1.0
* @created 11-Jul-2011 16:45:44
*/
public interface IMainWindow {
/**
*
* @param subWindow
*/
public void addSubWindow(ISubWindow subWindow);
/**
*
* @param subWindow
*/
public void closeSubWindow(ISubWindow subWindow);
public boolean initialize();
}
\ No newline at end of file
package org.universAAL.ucc.viewapi.interfaces;
/**
* @author Alex
* @version 1.0
* @created 11-Jul-2011 16:45:44
*/
public interface ISubWindow {
public boolean close();
public void initialize();
}
\ No newline at end of file
File deleted
File deleted
File deleted
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment