Skip to content

Commit 51d7993

Browse files
committed
Copyright line
1 parent 94469c2 commit 51d7993

File tree

932 files changed

+989
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

932 files changed

+989
-5
lines changed

access/Cake.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/Cake.java
2+
// ©2015 MindView LLC: see Copyright.txt
23
// Accesses a class in a separate compilation unit.
34

45
class Cake {

access/ChocolateChip.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/ChocolateChip.java
2+
// Š2015 MindView LLC: see Copyright.txt
23
// Can't use package-access member from another package.
34
import access.dessert.*;
45

access/ChocolateChip2.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/ChocolateChip2.java
2+
// Š2015 MindView LLC: see Copyright.txt
23
import access.cookie2.*;
34

45
public class ChocolateChip2 extends Cookie {

access/Dinner.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/Dinner.java
2+
// Š2015 MindView LLC: see Copyright.txt
23
// Uses the library.
34
import access.dessert.*;
45

access/FullQualification.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/FullQualification.java
2+
// ©2015 MindView LLC: see Copyright.txt
23

34
public class FullQualification {
45
public static void main(String[] args) {

access/IceCream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/IceCream.java
2+
// ©2015 MindView LLC: see Copyright.txt
23
// Demonstrates "private" keyword.
34

45
class Sundae {

access/ImportedMyClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/ImportedMyClass.java
2+
// ©2015 MindView LLC: see Copyright.txt
23
import access.mypackage.*;
34

45
public class ImportedMyClass {

access/LibTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/LibTest.java
2+
// ©2015 MindView LLC: see Copyright.txt
23
// Uses the library.
34
import net.mindview.simple.*;
45

access/Lunch.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/Lunch.java
2+
// ©2015 MindView LLC: see Copyright.txt
23
// Demonstrates class access specifiers. Make a class
34
// effectively private with private constructors:
45

access/OrganizedByAccess.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//: access/OrganizedByAccess.java
2+
// ©2015 MindView LLC: see Copyright.txt
23

34
public class OrganizedByAccess {
45
public void pub1() { /* ... */ }

0 commit comments

Comments
 (0)