forked from eclipse-kitalpha/kitalpha-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eclipse-kitalpha#20 Fix technical debt issues
Change-Id: Id5583adc42f757815d3bc94bbfc97bdf625dcf7a
- Loading branch information
1 parent
f44ef92
commit b79fbe0
Showing
23 changed files
with
795 additions
and
719 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
introspector/plugins/org.polarsys.kitalpha.pdt.docgen/.settings/org.eclipse.jdt.core.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | ||
org.eclipse.jdt.core.compiler.compliance=1.7 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.source=1.7 | ||
org.eclipse.jdt.core.compiler.release=disabled | ||
org.eclipse.jdt.core.compiler.source=1.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
....polarsys.kitalpha.pdt.docgen/src/org/polarsys/kitalpha/pdt/docgen/helpers/Constants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.polarsys.kitalpha.pdt.docgen.helpers; | ||
|
||
public class Constants { | ||
|
||
private Constants() {} | ||
|
||
protected static final String ALT_AFTER_IMGSRCICONOPEN_CLOSE = "\" alt=\"\"/>"; | ||
protected static final String IMG_SRC_ICON_OPEN = "<img src=\"../icon/"; | ||
protected static final String TR_OPEN = "<tr>"; | ||
protected static final String TR_CLOSE = "</tr>"; | ||
protected static final String TD_OPEN = "<td>"; | ||
protected static final String TD_CLOSE = "</td>"; | ||
protected static final String UL_STYLE_LIST_STYLE_TYPE_NONE_OPEN = "<ul style=\"list-style-type:none\">"; | ||
protected static final String UL_STYLE_LIST_STYLE_TYPE_DISC_OPEN = "<ul style=\"list-style-type:disc\">"; | ||
protected static final String UL_CLOSE = "</ul>"; | ||
protected static final String LI_OPEN = "<li>"; | ||
protected static final String LI_CLOSE = "</li>"; | ||
|
||
protected static final String ELEMENTS = " elements)"; | ||
protected static final String ELEMENT = " element)"; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.