WIP: left over open files for long...
This commit is contained in:
parent
0a2398c5c1
commit
76aa74990e
165 changed files with 4299 additions and 3373 deletions
23
vasc-frontend/vasc-frontend-api/.project
Normal file
23
vasc-frontend/vasc-frontend-api/.project
Normal 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>
|
||||
11
vasc-frontend/vasc-frontend-api/pom.xml
Normal file
11
vasc-frontend/vasc-frontend-api/pom.xml
Normal 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>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.vasc.frontend.api.event;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.vasc.frontend.api;
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
||||
public class VascView {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
||||
public interface VascViewComponent {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
||||
public interface VascViewContainer {
|
||||
|
||||
int getChildCount();
|
||||
VascViewContainer getChild(int i);
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
public class VascViewField {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
||||
public class VascViewFieldPanel {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.vasc.frontend.api.view;
|
||||
|
|
@ -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 {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package net.forwardfire.vasc.frontend.api.view.table;
|
||||
|
||||
import net.forwardfire.vasc.frontend.api.view.VascViewComponent;
|
||||
|
||||
public class VascViewTableColumn {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.vasc.frontend.api.view.table;
|
||||
|
|
@ -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();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue