2
0
Fork 0

WIP: left over open files for long...

This commit is contained in:
Willem 2017-06-10 02:22:01 +02:00
parent 0a2398c5c1
commit 76aa74990e
165 changed files with 4299 additions and 3373 deletions

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>vasc-frontend-api</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>

View file

@ -0,0 +1,11 @@
<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>
<parent>
<groupId>net.forwardfire.vasc</groupId>
<artifactId>vasc-frontend</artifactId>
<version>0.4.2-SNAPSHOT</version>
</parent>
<artifactId>vasc-frontend-api</artifactId>
<name>vasc-frontend-api</name>
<description>vasc-frontend-api</description>
</project>

View file

@ -0,0 +1,8 @@
/**
*
*/
/**
* @author willemc
*
*/
package net.forwardfire.vasc.frontend.api.event;

View file

@ -0,0 +1,8 @@
/**
*
*/
/**
* @author willemc
*
*/
package net.forwardfire.vasc.frontend.api;

View file

@ -0,0 +1,5 @@
package net.forwardfire.vasc.frontend.api.view;
public class VascView {
}

View file

@ -0,0 +1,5 @@
package net.forwardfire.vasc.frontend.api.view;
public interface VascViewComponent {
}

View file

@ -0,0 +1,7 @@
package net.forwardfire.vasc.frontend.api.view;
public interface VascViewContainer {
int getChildCount();
VascViewContainer getChild(int i);
}

View file

@ -0,0 +1,12 @@
/**
*
*/
package net.forwardfire.vasc.frontend.api.view;
/**
* @author willemc
*
*/
public class VascViewField {
}

View file

@ -0,0 +1,5 @@
package net.forwardfire.vasc.frontend.api.view;
public class VascViewFieldPanel {
}

View file

@ -0,0 +1,8 @@
/**
*
*/
/**
* @author willemc
*
*/
package net.forwardfire.vasc.frontend.api.view;

View file

@ -0,0 +1,7 @@
package net.forwardfire.vasc.frontend.api.view.table;
import net.forwardfire.vasc.frontend.api.view.VascViewComponent;
public class VascViewTable implements VascViewComponent {
}

View file

@ -0,0 +1,7 @@
package net.forwardfire.vasc.frontend.api.view.table;
import net.forwardfire.vasc.frontend.api.view.VascViewComponent;
public class VascViewTableColumn {
}

View file

@ -0,0 +1,8 @@
/**
*
*/
/**
* @author willemc
*
*/
package net.forwardfire.vasc.frontend.api.view.table;

View file

@ -0,0 +1,14 @@
package net.forwardfire.vasc.frontend.api;
import net.forwardfire.vasc.frontend.api.view.VascView;
public class TestViewApi {
public void testViewApi() {
VascView view = new VascView();
}
}