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 React from 'react'; | |
import ReactQuill,{ Quill } from 'react-quill'; // ES6 | |
import { ImageUpload } from 'quill-image-upload'; | |
import {withStyles} from "@material-ui/core/styles/index"; | |
Quill.register('modules/imageUpload', ImageUpload); | |
//React JS - Quill editor Image upload plugin. + Imgur image upload API + Code uses "react": "16.3.0", quill-image-upload": "^0.1.3 | |
class QuillEditorImageUpload extends React.Component { | |
constructor(props) { | |
super(props); |
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
package nesting; | |
public class Father { | |
/* ============================================================ | |
methods in the class Father can access PRIVATE | |
members of this NESTED class !!! | |
============================================================ */ | |
private class BankAccount { | |
private double accountNumber; // *** Private variable !!! *** | |
private String transferee; // *** Private variable !!! *** |
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
@startuml | |
namespace alert { | |
namespace domain { | |
interface ActiveAlertCountInteractorContract { | |
+ getActiveAlertsCount(): Single<String> | |
} | |
class ActiveAlertCountInteractor { |