Skip to content

Commit

Permalink
8301121: rich text area control
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-goryachev-oracle committed Feb 21, 2024
1 parent 425b5f4 commit fa51991
Show file tree
Hide file tree
Showing 109 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2749,11 +2749,11 @@ project(":controls") {
addValidateSourceSets(project, sourceSets)
}

project(":incubator.controls") {
project(":incubator.richtext") {
project.ext.buildModule = true
project.ext.includeSources = true
project.ext.moduleRuntime = true
project.ext.moduleName = "javafx.incubator.controls"
project.ext.moduleName = "javafx.incubator.richtext"
project.ext.incubating = true

sourceSets {
Expand All @@ -2775,7 +2775,7 @@ project(":incubator.controls") {
project.ext.moduleSourcePath = defaultModuleSourcePath
project.ext.moduleSourcePathShim = defaultModuleSourcePathShim

commonModuleSetup(project, [ 'base', 'graphics', 'controls', 'incubator.controls' ])
commonModuleSetup(project, [ 'base', 'graphics', 'controls', 'incubator.richtext' ])

dependencies {
testImplementation project(":base").sourceSets.test.output
Expand Down Expand Up @@ -4321,7 +4321,7 @@ task javadoc(type: Javadoc, dependsOn: createMSPfile) {
description = "Generates the JavaDoc for all the public API"
executable = JAVADOC
def projectsToDocument = [
project(":base"), project(":graphics"), project(":controls"), project(":incubator.controls"), project(":media"),
project(":base"), project(":graphics"), project(":controls"), project(":incubator.richtext"), project(":media"),
project(":swing"), /*project(":swt"),*/ project(":fxml"), project(":web")]
source(projectsToDocument.collect({
[it.sourceSets.main.java]
Expand Down
2 changes: 1 addition & 1 deletion modules/javafx.base/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

exports com.sun.javafx to
javafx.controls,
javafx.incubator.controls,
javafx.incubator.richtext,
javafx.graphics,
javafx.fxml,
javafx.media,
Expand Down
2 changes: 1 addition & 1 deletion modules/javafx.graphics/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
exports com.sun.javafx.util to
javafx.controls,
javafx.fxml,
javafx.incubator.controls,
javafx.incubator.richtext,
javafx.media,
javafx.swing,
javafx.web;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>incubator.controls</name>
<name>incubator.richtext</name>
<comment></comment>
<projects>
</projects>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @moduleGraph
* @since 999
*/
module javafx.incubator.controls {
module javafx.incubator.richtext {
requires transitive javafx.base;
requires transitive javafx.graphics;
requires transitive javafx.controls;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
--add-exports javafx.controls/com.sun.javafx.scene.control.skin=ALL-UNNAMED
--add-exports javafx.controls/com.sun.javafx.scene.control=ALL-UNNAMED
#
--add-exports javafx.incubator.controls/com.sun.javafx.incubator.scene.control.dummy=ALL-UNNAMED
--add-exports javafx.incubator.controls/com.sun.javafx.incubator.scene.control.rich=ALL-UNNAMED
--add-exports javafx.incubator.richtext/com.sun.javafx.incubator.scene.control.dummy=ALL-UNNAMED
--add-exports javafx.incubator.richtext/com.sun.javafx.incubator.scene.control.rich=ALL-UNNAMED
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
* questions.
*/

include "base", "graphics", "controls", "incubator.controls", "swing", "swt", "fxml", "web", "media", "systemTests"
include "base", "graphics", "controls", "incubator.richtext", "swing", "swt", "fxml", "web", "media", "systemTests"

project(":base").projectDir = file("modules/javafx.base")
project(":graphics").projectDir = file("modules/javafx.graphics")
project(":controls").projectDir = file("modules/javafx.controls")
project(":incubator.controls").projectDir = file("modules/javafx.incubator.controls")
project(":incubator.richtext").projectDir = file("modules/javafx.incubator.richtext")
project(":swing").projectDir = file("modules/javafx.swing")
project(":swt").projectDir = file("modules/javafx.swt")
project(":fxml").projectDir = file("modules/javafx.fxml")
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/RichTextAreaDemo/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry combineaccessrules="false" kind="src" path="/incubator.controls">
<classpathentry combineaccessrules="false" kind="src" path="/incubator.richtext">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/RichTextAreaDemo/src/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@
requires javafx.base;
requires javafx.controls;
requires javafx.graphics;
requires javafx.incubator.controls;
requires javafx.incubator.richtext;
}

0 comments on commit fa51991

Please sign in to comment.