6573239: Typo in jfc text file
Reviewed-by: serb
This commit is contained in:
parent
fe80d6458c
commit
43c54e9c7f
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@ -74,7 +74,7 @@ public class TreeDemo extends DemoModule {
|
|||||||
|
|
||||||
public JScrollPane createTree() {
|
public JScrollPane createTree() {
|
||||||
DefaultMutableTreeNode top = new DefaultMutableTreeNode(getString("TreeDemo.music"));
|
DefaultMutableTreeNode top = new DefaultMutableTreeNode(getString("TreeDemo.music"));
|
||||||
DefaultMutableTreeNode catagory = null ;
|
DefaultMutableTreeNode category = null;
|
||||||
DefaultMutableTreeNode artist = null;
|
DefaultMutableTreeNode artist = null;
|
||||||
DefaultMutableTreeNode record = null;
|
DefaultMutableTreeNode record = null;
|
||||||
|
|
||||||
@ -94,12 +94,12 @@ public class TreeDemo extends DemoModule {
|
|||||||
char linetype = line.charAt(0);
|
char linetype = line.charAt(0);
|
||||||
switch(linetype) {
|
switch(linetype) {
|
||||||
case 'C':
|
case 'C':
|
||||||
catagory = new DefaultMutableTreeNode(line.substring(2));
|
category = new DefaultMutableTreeNode(line.substring(2));
|
||||||
top.add(catagory);
|
top.add(category);
|
||||||
break;
|
break;
|
||||||
case 'A':
|
case 'A':
|
||||||
if(catagory != null) {
|
if(category != null) {
|
||||||
catagory.add(artist = new DefaultMutableTreeNode(line.substring(2)));
|
category.add(artist = new DefaultMutableTreeNode(line.substring(2)));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'R':
|
case 'R':
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
# A = Artist / Composer #
|
# A = Artist / Composer #
|
||||||
# R = Record / Style #
|
# R = Record / Style #
|
||||||
# S = Song Name / Composition #
|
# S = Song Name / Composition #
|
||||||
# C = Catagory #
|
# C = Category #
|
||||||
# #
|
# #
|
||||||
################################################################################
|
################################################################################
|
||||||
C Classical
|
C Classical
|
||||||
@ -195,49 +195,49 @@ C Rock
|
|||||||
A The Beatles
|
A The Beatles
|
||||||
R A Hard Day's Night
|
R A Hard Day's Night
|
||||||
S A Hard Day's Night
|
S A Hard Day's Night
|
||||||
S I Should Have Known Better
|
S I Should Have Known Better
|
||||||
S If I Fell
|
S If I Fell
|
||||||
S I'm Happy Just To Dance With You
|
S I'm Happy Just To Dance With You
|
||||||
S And I Love Her
|
S And I Love Her
|
||||||
S Tell Me Why
|
S Tell Me Why
|
||||||
S Can't Buy Me Love
|
S Can't Buy Me Love
|
||||||
S Any Time At All
|
S Any Time At All
|
||||||
S I'll Cry Instead
|
S I'll Cry Instead
|
||||||
S Things We Said Today
|
S Things We Said Today
|
||||||
S When I Get Home
|
S When I Get Home
|
||||||
S You Can't Do That
|
S You Can't Do That
|
||||||
R Beatles For Sale
|
R Beatles For Sale
|
||||||
S No Reply
|
S No Reply
|
||||||
S I'm a Loser
|
S I'm a Loser
|
||||||
S Baby's In Black
|
S Baby's In Black
|
||||||
S Rock And Roll Music
|
S Rock And Roll Music
|
||||||
S I'll Follow the Sun
|
S I'll Follow the Sun
|
||||||
S Mr. Moonlight
|
S Mr. Moonlight
|
||||||
S Kansas City/Hey Hey Hey Hey
|
S Kansas City/Hey Hey Hey Hey
|
||||||
S Eight Days a Week
|
S Eight Days a Week
|
||||||
S Words Of Love
|
S Words Of Love
|
||||||
S Honey Don't
|
S Honey Don't
|
||||||
S Every Little Thing
|
S Every Little Thing
|
||||||
S I Don't Want To Spoil the Party
|
S I Don't Want To Spoil the Party
|
||||||
S What You're Doing
|
S What You're Doing
|
||||||
S Everybody's Trying To Be My Baby
|
S Everybody's Trying To Be My Baby
|
||||||
R Help!
|
R Help!
|
||||||
S Help!
|
S Help!
|
||||||
S The Night Before
|
S The Night Before
|
||||||
S You've Got To Hide Your Love Away
|
S You've Got To Hide Your Love Away
|
||||||
S I Need You
|
S I Need You
|
||||||
S Another Girl
|
S Another Girl
|
||||||
S You're Going To Lose That Girl
|
S You're Going To Lose That Girl
|
||||||
S Ticket To Ride
|
S Ticket To Ride
|
||||||
S Act Naturally
|
S Act Naturally
|
||||||
S It's Only Love
|
S It's Only Love
|
||||||
S You Like Me Too Much
|
S You Like Me Too Much
|
||||||
S Tell Me What You See
|
S Tell Me What You See
|
||||||
S I've Just Seen a Face
|
S I've Just Seen a Face
|
||||||
S Yesterday
|
S Yesterday
|
||||||
S Dizzy Miss Lizzie
|
S Dizzy Miss Lizzie
|
||||||
R Rubber Soul
|
R Rubber Soul
|
||||||
S Drive My Car
|
S Drive My Car
|
||||||
S Norwegian Wood
|
S Norwegian Wood
|
||||||
S You Won't See Me
|
S You Won't See Me
|
||||||
S Nowhere Man
|
S Nowhere Man
|
||||||
@ -245,27 +245,27 @@ S Think For Yourself
|
|||||||
S The Word
|
S The Word
|
||||||
S Michelle
|
S Michelle
|
||||||
S What Goes On?
|
S What Goes On?
|
||||||
S Girl
|
S Girl
|
||||||
S I'm Looking Through You
|
S I'm Looking Through You
|
||||||
S In My Life
|
S In My Life
|
||||||
S Wait
|
S Wait
|
||||||
S If I Needed Someone
|
S If I Needed Someone
|
||||||
S Run For Your Life
|
S Run For Your Life
|
||||||
R Revolver
|
R Revolver
|
||||||
S Taxman
|
S Taxman
|
||||||
S Rigby
|
S Rigby
|
||||||
S I'm Only Sleeping
|
S I'm Only Sleeping
|
||||||
S For You To
|
S For You To
|
||||||
S Here There And Everywhere
|
S Here There And Everywhere
|
||||||
S Yellow Submarine
|
S Yellow Submarine
|
||||||
S She Said She Said
|
S She Said She Said
|
||||||
S Good Day Sunshine
|
S Good Day Sunshine
|
||||||
S And Your Bird Can Sing
|
S And Your Bird Can Sing
|
||||||
S For No One
|
S For No One
|
||||||
S Doctor Robert
|
S Doctor Robert
|
||||||
S I Want To Tell You
|
S I Want To Tell You
|
||||||
S Got To Get You Into My Life
|
S Got To Get You Into My Life
|
||||||
S Tomorrow Never Knows
|
S Tomorrow Never Knows
|
||||||
R Sgt. Pepper's Lonely Hearts Club Band
|
R Sgt. Pepper's Lonely Hearts Club Band
|
||||||
S Sgt. Pepper's Lonely Hearts Club Band
|
S Sgt. Pepper's Lonely Hearts Club Band
|
||||||
S With a Little Help From My Friends
|
S With a Little Help From My Friends
|
||||||
@ -554,35 +554,35 @@ S Leaving Science
|
|||||||
S What A Life
|
S What A Life
|
||||||
A Komeda
|
A Komeda
|
||||||
R Plan 714 Till
|
R Plan 714 Till
|
||||||
S Fuego De La Vida
|
S Fuego De La Vida
|
||||||
S Herbamore
|
S Herbamore
|
||||||
S Som I Fjol
|
S Som I Fjol
|
||||||
S En Spricka I Taket
|
S En Spricka I Taket
|
||||||
R Genius Of
|
R Genius Of
|
||||||
S More Is More
|
S More Is More
|
||||||
S Fire
|
S Fire
|
||||||
S Rocket Plane (Music On The Moon)
|
S Rocket Plane (Music On The Moon)
|
||||||
S Boogie Woogie/Rock 'N' Roll
|
S Boogie Woogie/Rock 'N' Roll
|
||||||
S Disko
|
S Disko
|
||||||
S Top Star
|
S Top Star
|
||||||
S Light O' My Life
|
S Light O' My Life
|
||||||
S If
|
S If
|
||||||
S Frolic
|
S Frolic
|
||||||
S In Orbit
|
S In Orbit
|
||||||
S Arbogast
|
S Arbogast
|
||||||
S New New No
|
S New New No
|
||||||
R What Makes It Go
|
R What Makes It Go
|
||||||
S Binario
|
S Binario
|
||||||
S It's Alright, Baby
|
S It's Alright, Baby
|
||||||
S Curious
|
S Curious
|
||||||
S Cul de Sac
|
S Cul de Sac
|
||||||
S Living Things
|
S Living Things
|
||||||
S Flabbergast
|
S Flabbergast
|
||||||
S Campfire
|
S Campfire
|
||||||
S Happyment
|
S Happyment
|
||||||
S Our Hospitality
|
S Our Hospitality
|
||||||
S Focus
|
S Focus
|
||||||
S A Simple Formality
|
S A Simple Formality
|
||||||
A Steve Miller Band
|
A Steve Miller Band
|
||||||
R Circle Of Love
|
R Circle Of Love
|
||||||
S Heart Like A Wheel
|
S Heart Like A Wheel
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -83,7 +83,7 @@ public class TreeDemo extends JPanel {
|
|||||||
|
|
||||||
private JTree createTree() {
|
private JTree createTree() {
|
||||||
DefaultMutableTreeNode top = new DefaultMutableTreeNode(resourceManager.getString("TreeDemo.music"));
|
DefaultMutableTreeNode top = new DefaultMutableTreeNode(resourceManager.getString("TreeDemo.music"));
|
||||||
DefaultMutableTreeNode catagory = null;
|
DefaultMutableTreeNode category = null;
|
||||||
DefaultMutableTreeNode artist = null;
|
DefaultMutableTreeNode artist = null;
|
||||||
DefaultMutableTreeNode record = null;
|
DefaultMutableTreeNode record = null;
|
||||||
|
|
||||||
@ -103,12 +103,12 @@ public class TreeDemo extends JPanel {
|
|||||||
char linetype = line.charAt(0);
|
char linetype = line.charAt(0);
|
||||||
switch (linetype) {
|
switch (linetype) {
|
||||||
case 'C':
|
case 'C':
|
||||||
catagory = new DefaultMutableTreeNode(line.substring(2));
|
category = new DefaultMutableTreeNode(line.substring(2));
|
||||||
top.add(catagory);
|
top.add(category);
|
||||||
break;
|
break;
|
||||||
case 'A':
|
case 'A':
|
||||||
if (catagory != null) {
|
if (category != null) {
|
||||||
catagory.add(artist = new DefaultMutableTreeNode(line.substring(2)));
|
category.add(artist = new DefaultMutableTreeNode(line.substring(2)));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'R':
|
case 'R':
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
# A = Artist / Composer #
|
# A = Artist / Composer #
|
||||||
# R = Record / Style #
|
# R = Record / Style #
|
||||||
# S = Song Name / Composition #
|
# S = Song Name / Composition #
|
||||||
# C = Catagory #
|
# C = Category #
|
||||||
# #
|
# #
|
||||||
################################################################################
|
################################################################################
|
||||||
C Classical
|
C Classical
|
||||||
@ -195,49 +195,49 @@ C Rock
|
|||||||
A The Beatles
|
A The Beatles
|
||||||
R A Hard Day's Night
|
R A Hard Day's Night
|
||||||
S A Hard Day's Night
|
S A Hard Day's Night
|
||||||
S I Should Have Known Better
|
S I Should Have Known Better
|
||||||
S If I Fell
|
S If I Fell
|
||||||
S I'm Happy Just To Dance With You
|
S I'm Happy Just To Dance With You
|
||||||
S And I Love Her
|
S And I Love Her
|
||||||
S Tell Me Why
|
S Tell Me Why
|
||||||
S Can't Buy Me Love
|
S Can't Buy Me Love
|
||||||
S Any Time At All
|
S Any Time At All
|
||||||
S I'll Cry Instead
|
S I'll Cry Instead
|
||||||
S Things We Said Today
|
S Things We Said Today
|
||||||
S When I Get Home
|
S When I Get Home
|
||||||
S You Can't Do That
|
S You Can't Do That
|
||||||
R Beatles For Sale
|
R Beatles For Sale
|
||||||
S No Reply
|
S No Reply
|
||||||
S I'm a Loser
|
S I'm a Loser
|
||||||
S Baby's In Black
|
S Baby's In Black
|
||||||
S Rock And Roll Music
|
S Rock And Roll Music
|
||||||
S I'll Follow the Sun
|
S I'll Follow the Sun
|
||||||
S Mr. Moonlight
|
S Mr. Moonlight
|
||||||
S Kansas City/Hey Hey Hey Hey
|
S Kansas City/Hey Hey Hey Hey
|
||||||
S Eight Days a Week
|
S Eight Days a Week
|
||||||
S Words Of Love
|
S Words Of Love
|
||||||
S Honey Don't
|
S Honey Don't
|
||||||
S Every Little Thing
|
S Every Little Thing
|
||||||
S I Don't Want To Spoil the Party
|
S I Don't Want To Spoil the Party
|
||||||
S What You're Doing
|
S What You're Doing
|
||||||
S Everybody's Trying To Be My Baby
|
S Everybody's Trying To Be My Baby
|
||||||
R Help!
|
R Help!
|
||||||
S Help!
|
S Help!
|
||||||
S The Night Before
|
S The Night Before
|
||||||
S You've Got To Hide Your Love Away
|
S You've Got To Hide Your Love Away
|
||||||
S I Need You
|
S I Need You
|
||||||
S Another Girl
|
S Another Girl
|
||||||
S You're Going To Lose That Girl
|
S You're Going To Lose That Girl
|
||||||
S Ticket To Ride
|
S Ticket To Ride
|
||||||
S Act Naturally
|
S Act Naturally
|
||||||
S It's Only Love
|
S It's Only Love
|
||||||
S You Like Me Too Much
|
S You Like Me Too Much
|
||||||
S Tell Me What You See
|
S Tell Me What You See
|
||||||
S I've Just Seen a Face
|
S I've Just Seen a Face
|
||||||
S Yesterday
|
S Yesterday
|
||||||
S Dizzy Miss Lizzie
|
S Dizzy Miss Lizzie
|
||||||
R Rubber Soul
|
R Rubber Soul
|
||||||
S Drive My Car
|
S Drive My Car
|
||||||
S Norwegian Wood
|
S Norwegian Wood
|
||||||
S You Won't See Me
|
S You Won't See Me
|
||||||
S Nowhere Man
|
S Nowhere Man
|
||||||
@ -245,27 +245,27 @@ S Think For Yourself
|
|||||||
S The Word
|
S The Word
|
||||||
S Michelle
|
S Michelle
|
||||||
S What Goes On?
|
S What Goes On?
|
||||||
S Girl
|
S Girl
|
||||||
S I'm Looking Through You
|
S I'm Looking Through You
|
||||||
S In My Life
|
S In My Life
|
||||||
S Wait
|
S Wait
|
||||||
S If I Needed Someone
|
S If I Needed Someone
|
||||||
S Run For Your Life
|
S Run For Your Life
|
||||||
R Revolver
|
R Revolver
|
||||||
S Taxman
|
S Taxman
|
||||||
S Rigby
|
S Rigby
|
||||||
S I'm Only Sleeping
|
S I'm Only Sleeping
|
||||||
S For You To
|
S For You To
|
||||||
S Here There And Everywhere
|
S Here There And Everywhere
|
||||||
S Yellow Submarine
|
S Yellow Submarine
|
||||||
S She Said She Said
|
S She Said She Said
|
||||||
S Good Day Sunshine
|
S Good Day Sunshine
|
||||||
S And Your Bird Can Sing
|
S And Your Bird Can Sing
|
||||||
S For No One
|
S For No One
|
||||||
S Doctor Robert
|
S Doctor Robert
|
||||||
S I Want To Tell You
|
S I Want To Tell You
|
||||||
S Got To Get You Into My Life
|
S Got To Get You Into My Life
|
||||||
S Tomorrow Never Knows
|
S Tomorrow Never Knows
|
||||||
R Sgt. Pepper's Lonely Hearts Club Band
|
R Sgt. Pepper's Lonely Hearts Club Band
|
||||||
S Sgt. Pepper's Lonely Hearts Club Band
|
S Sgt. Pepper's Lonely Hearts Club Band
|
||||||
S With a Little Help From My Friends
|
S With a Little Help From My Friends
|
||||||
@ -554,35 +554,35 @@ S Leaving Science
|
|||||||
S What A Life
|
S What A Life
|
||||||
A Komeda
|
A Komeda
|
||||||
R Plan 714 Till
|
R Plan 714 Till
|
||||||
S Fuego De La Vida
|
S Fuego De La Vida
|
||||||
S Herbamore
|
S Herbamore
|
||||||
S Som I Fjol
|
S Som I Fjol
|
||||||
S En Spricka I Taket
|
S En Spricka I Taket
|
||||||
R Genius Of
|
R Genius Of
|
||||||
S More Is More
|
S More Is More
|
||||||
S Fire
|
S Fire
|
||||||
S Rocket Plane (Music On The Moon)
|
S Rocket Plane (Music On The Moon)
|
||||||
S Boogie Woogie/Rock 'N' Roll
|
S Boogie Woogie/Rock 'N' Roll
|
||||||
S Disko
|
S Disko
|
||||||
S Top Star
|
S Top Star
|
||||||
S Light O' My Life
|
S Light O' My Life
|
||||||
S If
|
S If
|
||||||
S Frolic
|
S Frolic
|
||||||
S In Orbit
|
S In Orbit
|
||||||
S Arbogast
|
S Arbogast
|
||||||
S New New No
|
S New New No
|
||||||
R What Makes It Go
|
R What Makes It Go
|
||||||
S Binario
|
S Binario
|
||||||
S It's Alright, Baby
|
S It's Alright, Baby
|
||||||
S Curious
|
S Curious
|
||||||
S Cul de Sac
|
S Cul de Sac
|
||||||
S Living Things
|
S Living Things
|
||||||
S Flabbergast
|
S Flabbergast
|
||||||
S Campfire
|
S Campfire
|
||||||
S Happyment
|
S Happyment
|
||||||
S Our Hospitality
|
S Our Hospitality
|
||||||
S Focus
|
S Focus
|
||||||
S A Simple Formality
|
S A Simple Formality
|
||||||
A Steve Miller Band
|
A Steve Miller Band
|
||||||
R Circle Of Love
|
R Circle Of Love
|
||||||
S Heart Like A Wheel
|
S Heart Like A Wheel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user