fix docblock alignment

This commit is contained in:
Dennis Eichhorn 2019-12-29 23:40:20 +01:00
parent a97e59e5cf
commit 7a43f8f11e
59 changed files with 237 additions and 237 deletions

View File

@ -1,10 +1,10 @@
/** /**
* Form manager class. * Form manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Account. * Account.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Account { export class Account {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Account Manager. * Account Manager.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class AccountManager { export class AccountManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Account type. * Account type.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const AccountType = Object.freeze({ export const AccountType = Object.freeze({
USER: 0, USER: 0,

View File

@ -1,10 +1,10 @@
/** /**
* Particle class. * Particle class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Particle class. * Particle class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Particle animation class. * Particle animation class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Asset manager. * Asset manager.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class AssetManager { export class AssetManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Auth class. * Auth class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Auth { export class Auth {
/** /**

View File

@ -8,12 +8,12 @@ import { AssetManager } from './Asset/AssetManager.js';
* include, import etc. Contrary to it's name the autoloader is not able to truly autoload * include, import etc. Contrary to it's name the autoloader is not able to truly autoload
* referenced classes. * referenced classes.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const Autoloader = {}; export const Autoloader = {};
Autoloader.loaded = []; Autoloader.loaded = [];
Autoloader.namespaced = []; Autoloader.namespaced = [];

View File

@ -4,10 +4,10 @@
* This is a generic options class for storing options. This is useful for handling options in other modules * This is a generic options class for storing options. This is useful for handling options in other modules
* without redefining the same behaviour multiple times. * without redefining the same behaviour multiple times.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Options { export class Options {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* LocalStorage class. * LocalStorage class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class LocalStorage { export class LocalStorage {
/** /**

View File

@ -5,10 +5,10 @@ import { Logger } from '../Log/Logger.js';
* *
* Used for pooling requests. * Used for pooling requests.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class EventManager { export class EventManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Log Level enum. * Log Level enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const LogLevel = Object.freeze({ export const LogLevel = Object.freeze({
EMERGENCY: 'emergency', EMERGENCY: 'emergency',

View File

@ -4,10 +4,10 @@ import { Request } from '../Message/Request/Request.js';
/** /**
* Logger class. * Logger class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Logger { export class Logger {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Math formula evaluator * Math formula evaluator
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) { (function (jsOMS) {
"use strict"; "use strict";

View File

@ -1,10 +1,10 @@
/** /**
* App notification. * App notification.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class AppNotification { export class AppNotification {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Browser notification. * Browser notification.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class BrowserNotification { export class BrowserNotification {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Notification data enum. * Notification data enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const NotificationLevel = Object.freeze({ export const NotificationLevel = Object.freeze({
OK: 'ok', OK: 'ok',

View File

@ -5,10 +5,10 @@ import { NotificationType } from '../../../jsOMS/Message/Notification/Notificati
/** /**
* Notification manager. * Notification manager.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class NotificationManager { export class NotificationManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* App notification. * App notification.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class NotificationMessage { export class NotificationMessage {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Notification data enum. * Notification data enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const NotificationType = Object.freeze({ export const NotificationType = Object.freeze({
APP_NOTIFICATION: 1, APP_NOTIFICATION: 1,

View File

@ -1,10 +1,10 @@
/** /**
* Request data enum. * Request data enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const BrowserType = Object.freeze({ export const BrowserType = Object.freeze({
OPERA: 'opera', OPERA: 'opera',

View File

@ -1,10 +1,10 @@
/** /**
* Request data enum. * Request data enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const OSType = Object.freeze({ export const OSType = Object.freeze({
WINDOWS_10: 'windows nt 10.0', /* Windows 10 */ WINDOWS_10: 'windows nt 10.0', /* Windows 10 */

View File

@ -8,10 +8,10 @@ import { RequestType } from './RequestType.js';
/** /**
* Request class. * Request class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Request { export class Request {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Http request method. * Http request method.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const RequestMethod = Object.freeze({ export const RequestMethod = Object.freeze({
POST: 'POST', POST: 'POST',

View File

@ -1,10 +1,10 @@
/** /**
* Request type enum. * Request type enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const RequestType = Object.freeze({ export const RequestType = Object.freeze({
JSON: 'json', JSON: 'json',

View File

@ -3,10 +3,10 @@
* *
* Used for auto handling different responses. * Used for auto handling different responses.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Response { export class Response {
/** /**

View File

@ -3,10 +3,10 @@
* *
* Used for auto handling different responses. * Used for auto handling different responses.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class ResponseManager { export class ResponseManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Response type enum. * Response type enum.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const ResponseType = Object.freeze({ export const ResponseType = Object.freeze({
TEXT: 'text', TEXT: 'text',

View File

@ -1,10 +1,10 @@
/** /**
* Module factory. * Module factory.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class ModuleFactory { export class ModuleFactory {
/** /**

View File

@ -2,10 +2,10 @@ import { ModuleFactory } from './ModuleFactory.js';
/** /**
* Module manager. * Module manager.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class ModuleManager { export class ModuleManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Cell. * Cell.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Spreadsheet view. * Spreadsheet view.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -3,10 +3,10 @@ import { Logger } from '../Log/Logger.js';
/** /**
* Action manager class. * Action manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class ActionManager { export class ActionManager {
/** /**

View File

@ -11,10 +11,10 @@ import { FormView } from '../../Views/FormView.js';
/** /**
* Form manager class. * Form manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Form { export class Form {
/** /**

View File

@ -3,10 +3,10 @@ import { Request } from '../../Message/Request/Request.js';
/** /**
* Form manager class. * Form manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Input { export class Input {
/** /**

View File

@ -4,10 +4,10 @@ import { UriFactory } from '../../Uri/UriFactory.js';
/** /**
* Tab manager class. * Tab manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Tab { export class Tab {
/** /**

View File

@ -4,10 +4,10 @@ import { ResponseType } from '../../Message/Response/ResponseType.js';
/** /**
* Table manager class. * Table manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Table { export class Table {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Drag and drop class. * Drag and drop class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class DragNDrop { export class DragNDrop {
/** /**

View File

@ -5,10 +5,10 @@ import { AdvancedInput } from './Component/AdvancedInput.js';
/** /**
* UI manager for handling basic ui elements. * UI manager for handling basic ui elements.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class GeneralUI { export class GeneralUI {
/** /**

View File

@ -5,10 +5,10 @@ import { VoiceManager } from '../../../jsOMS/UI/Input/Voice/VoiceManager.js';
/** /**
* UI manager class. * UI manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class InputManager { export class InputManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Keyboard manager class. * Keyboard manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class KeyboardManager { export class KeyboardManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Click type. * Click type.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const ClickType = Object.freeze({ export const ClickType = Object.freeze({
LEFT: 0, LEFT: 0,

View File

@ -1,10 +1,10 @@
/** /**
* Event type. * Event type.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export const EventType = Object.freeze({ export const EventType = Object.freeze({
CONTEXT: 0, CONTEXT: 0,

View File

@ -3,10 +3,10 @@ import { EventType } from '../../../../jsOMS/UI/Input/Mouse/EventType.js';
/** /**
* Mouse manager class. * Mouse manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class MouseManager { export class MouseManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Touch manager class. * Touch manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class TouchManager { export class TouchManager {
/** /**

View File

@ -1,10 +1,10 @@
/** /**
* Form manager class. * Form manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class ReadManager { export class ReadManager {
/** /**

View File

@ -3,10 +3,10 @@ import { Logger } from '../../../Log/Logger.js';
/** /**
* Voice manager class. * Voice manager class.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class VoiceManager { export class VoiceManager {
/** /**

View File

@ -8,10 +8,10 @@ import { GeneralUI } from '../UI/GeneralUI.js';
/** /**
* UI manager for handling basic ui elements. * UI manager for handling basic ui elements.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class UIManager { export class UIManager {
/** /**

View File

@ -3,10 +3,10 @@
* *
* This class handles all unhandled exceptions depending on the configuration. * This class handles all unhandled exceptions depending on the configuration.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function () (function ()
{ {

View File

@ -3,10 +3,10 @@
* *
* This class is for creating, modifying and analyzing http uris. * This class is for creating, modifying and analyzing http uris.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class Http { export class Http {
/** /**

View File

@ -3,10 +3,10 @@ import { Http } from './Http.js';
/** /**
* Uri factory. * Uri factory.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class UriFactory { export class UriFactory {
/** /**

View File

@ -3,10 +3,10 @@
* *
* This library provides useful functionalities for the DOM and other manipulations. * This library provides useful functionalities for the DOM and other manipulations.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -3,10 +3,10 @@
* *
* This library provides useful functionalities for the DOM and other manipulations. * This library provides useful functionalities for the DOM and other manipulations.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -3,10 +3,10 @@
* *
* This library provides useful functionalities for the DOM and other manipulations. * This library provides useful functionalities for the DOM and other manipulations.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -3,10 +3,10 @@
* *
* This library provides useful functionalities for the DOM and other manipulations. * This library provides useful functionalities for the DOM and other manipulations.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -3,10 +3,10 @@
* *
* This library provides useful functionalities for the DOM and other manipulations. * This library provides useful functionalities for the DOM and other manipulations.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
(function (jsOMS) (function (jsOMS)
{ {

View File

@ -1,10 +1,10 @@
/** /**
* Table view. * Table view.
* *
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
* @since 1.0.0 * @since 1.0.0
*/ */
export class TableView { export class TableView {
/** /**