This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
interface IArray { | |
public void add(Object element); | |
public void addAll(Object elements[]); | |
} | |
class Array implements IArray { | |
private ArrayList<Object> a = new ArrayList<Object>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface PoweredDevice { | |
public void start(); | |
} | |
class ScanOperation { | |
public void perform() { | |
// Performing scan operation | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface IShape { | |
public void draw(); | |
} | |
class Rectangle implements IShape { | |
public void draw() { | |
System.out.println("RECTANGLE"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Employee { | |
private String name; | |
private String position; | |
public Employee(String name, String position) { | |
this.name = name; | |
this.position = position; | |
} | |
public Employee changeName(String name) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Album design for Supersonic | |
* | |
* Designed by: Danish Satkut (@Agent47DarkSoul) | |
*/ | |
body { | |
margin: 25px; | |
background-color: #DDD; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Circular profile picture | |
*/ | |
.image-container { | |
display: inline; | |
margin: auto 10px; | |
} | |
img { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Circular profile picture | |
*/ | |
.image-container { | |
display: inline; | |
margin: auto 10px; | |
} | |
img { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Artist Page design for Supersonic | |
*/ | |
artist_listing .artist_social { float: right; padding: 0; } | |
.artist_listing_name { color: #1398bb; font-size: 16px;} | |
.artist_listing_details { padding: 20px 10px; } | |
.artist_listing_details a { text-decoration: none; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#artist_listing { display: inline-block; width: 100%; } | |
#artist_listing .artist_social { float: right; padding: 0; } | |
.artist_listing_name { color: #1398bb; font-size: 16px;} | |
.artist_listing_details { padding: 20px 10px; } | |
.artist_listing_details a { text-decoration: none; } | |
#artist_listing_cover .page-title { position: absolute; width: 100%; top: 35%; color: #fff; text-align: center; } | |
#artist_listing_cover .sub_title { color: #FFF; font-size: 20px; } | |
#artist_listing .profile_wrap { height: 365px;overflow: hidden; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#artist_listing { display: inline-block; width: 100%; } | |
#artist_listing .artist_social { float: right; padding: 0; } | |
.artist_listing_name { color: #1398bb; font-size: 16px;} | |
.artist_listing_details { padding: 20px 10px; } | |
.artist_listing_details a { text-decoration: none; } | |
#artist_listing_cover .page-title { position: absolute; width: 100%; top: 35%; color: #fff; text-align: center; } | |
#artist_listing_cover .sub_title { color: #FFF; font-size: 20px; } | |
#artist_listing .profile_wrap { height: 365px;overflow: hidden; } |