Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IDATT1005_2024_Group_19
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Systemutvikling Gruppe 19
IDATT1005_2024_Group_19
Merge requests
!23
Javadoc for AppLauncher.java
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Javadoc for AppLauncher.java
#65-javadoc-applauncher
into
dev
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
André Wikheim Merkesdal
requested to merge
#65-javadoc-applauncher
into
dev
8 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
3878c92b
1 commit,
8 months ago
1 file
+
9
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/java/edu/ntnu/stud/launcher/AppLauncher.java
+
9
−
4
Options
package
edu.ntnu.stud.launcher
;
import
edu.ntnu.stud.controller.GUI
;
import
edu.ntnu.stud.model.database.DbInit
;
import
static
edu
.
ntnu
.
stud
.
model
.
ShoppingList
.
updateShoppingList
;
import
static
edu
.
ntnu
.
stud
.
model
.
database
.
JsonToDb
.
getShoppingListFromDb
;
/**
* The class responsible for launching the application.
*/
public
class
AppLauncher
{
/**
* The method launches the application.
*
* @param args Arguments from user input.
*/
public
static
void
main
(
String
[]
args
)
{
GUI
.
launcher
(
args
);
Loading