Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
TamilTransciption
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dilsan Mahadeva
TamilTransciption
Commits
d6f1fd21
Commit
d6f1fd21
authored
1 year ago
by
Dilsan Mahadeva
Browse files
Options
Downloads
Patches
Plain Diff
Main Program
parent
a80af767
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Src/main.java
+30
-0
30 additions, 0 deletions
Src/main.java
with
30 additions
and
0 deletions
Src/main.java
0 → 100644
+
30
−
0
View file @
d6f1fd21
import
javafx.application.Application
;
import
javafx.stage.Stage
;
import
javafx.scene.*
;
import
javafx.scene.layout.StackPane
;
import
javafx.fxml.FXMLLoader
;
public
class
main
extends
Application
{
@Override
public
void
start
(
Stage
stage
)
throws
Exception
{
Scene
scene
=
new
Scene
(
new
StackPane
());
FXMLLoader
loader
=
new
FXMLLoader
(
getClass
().
getResource
(
"/tamil.fxml"
));
scene
.
setRoot
(
loader
.
load
());
tamilController
controller
=
loader
.
getController
();
controller
.
init
();
stage
.
setScene
(
scene
);
stage
.
setTitle
(
"Tamil Transcription"
);
stage
.
show
();
}
/**
* @param args the command line arguments
*/
public
static
void
main
(
String
[]
args
)
{
launch
(
args
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment