code
stringlengths
3
1.18M
language
stringclasses
1 value
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package server; import java.awt.Point; /** * * @author Melis */ public class StartServerFrame extends javax.swing.JFrame { /...
Java
package server; import API.Model.Klant; import API.Model.LoginAccount; import java.math.BigDecimal; import managers.KlantManager; import managers.LoginManager; import managers.RekeningManager; import API.Model.Rekening; /** * Deze klasse wordt vanuit BankServer geinstantieerd. * En vult gegevens in de ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package server; import API.IAuth; import API.ITransactieHandler; import CiClient.CiConnector; import java.rmi.NoSuchObjectException; import java.rmi.NotBoundException; import java.rmi.RemoteException; import...
Java
package controller; import API.IClient; import API.Model.LoginAccount; import java.sql.Timestamp; import java.util.UUID; /** * Sessie object om authenticatie te versimpelen. Eenmalig login nodig waarna de * sessie blijft leven tot 10 minuten na de laatste activiteit. */ public class Sessie { priv...
Java
package controller; import API.IAuth; import API.IClient; import API.IObservable; import API.Model.Klant; import API.Model.LoginAccount; import API.Model.Rekening; import API.Model.SessieExpiredException; import java.math.BigDecimal; import java.rmi.RemoteException; import java.util.ArrayList; import java....
Java
package controller; import API.Model.SessieExpiredException; import API.IClient; import API.IObservable; import API.Model.Transactie; import API.ITransactieHandler; import API.Model.LoginAccount; import API.Model.TransactieStatus; import API.Model.TransactieType; import java.math.BigDecimal; import java.rmi...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package API; /** * * @author Melis */ public enum TransactieStatus { /** Wanneer een transactie verwerkt is door ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; /** * * @author Ieme */ public interface IKlant { /** * Stuurt de klantnaam terug * @return klantnaam */ String getKlantnaam(); /** * Stuurt de woonp...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package API; /** * */ public interface IObservable { /** * voegt een observer object toe * @param...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; import Bank.Model.SessieExpiredException; import java.math.BigDecimal; import java.rmi.RemoteException; import java.util.ArrayList; import java.util.GregorianCalendar; /** * * @author Ieme ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; import java.math.BigDecimal; import java.util.GregorianCalendar; /** * * @author Ieme */ public interface ITransactie { public int getTransactieId(); public int getEigenbankre...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; /** * * @author Ieme */ public interface ILoginAccount { /** * stuurt de loginnaam van het loginaccount terug * @return LoginNaam */ public String getLoginNaam();...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; import java.math.BigDecimal; /** * * @author Ieme */ public interface IRekening { /** * stuurt het rekeningnummer van de rekening terug * @return Rekeningnummer ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; import java.rmi.Remote; import java.rmi.RemoteException; /** * Deze interface wordt geinstantieerd aan de client zijde. * * Zodoende kan de server methodes van de client aanroepen. De server...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package API; import java.rmi.Remote; import java.rmi.RemoteException; /** */ public interface IObserver extends ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; import Bank.Model.SessieExpiredException; import java.math.BigDecimal; import java.rmi.RemoteException; /** * Interface waarmee client een sessie kan starten en een client haar basis * gegeve...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package API; /** * Gebruiken om transacties op te zoeken. * */ public enum TransactieType { /** Wanneer er geld op een rekening gestort wordt, zal dit debet zijn. */ DEBET, /** Wan...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Balie.Controller; import API.IClient; import API.IObservable; import API.IObserver; import java.rmi.*; import java.rmi.server.UnicastRemoteObject; import java.util.ArrayList; import java.util.HashMap...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.ITransactie; import java.math.RoundingMode; import java.text.DateFormat; import java.util.ArrayList; imp...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IKlant; import API.ILoginAccount; /** * * @author Melis */ public class KlantPanel extends javax.sw...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IAuth; import API.IObserver; import API.IRekening; import Bank.Model.SessieExpiredException; import java...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IAuth; import Balie.Controller.ClientImpl; import Bank.Model.SessieExpiredException; import java.net.Ma...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IAuth; import Balie.Controller.ClientImpl; import Bank.Model.SessieExpiredException; import java.net.Ma...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IRekening; import API.ITransactieHandler; import Bank.Model.SessieExpiredException; import java.awt.Poin...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import API.IAuth; import API.IKlant; import API.ILoginAccount; import API.IObservable; import API.IRekening; import...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Balie.gui; import java.awt.Point; /** * * @author Melis */ public class StartFrame extends javax.swing.JFrame { /** ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; /** * */ public class SessieExpiredException extends Exception { public SessieExpiredException() { } public SessieExpiredException(String message) { super(messa...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.ITransactie; import API.TransactieStatus; import java.math.BigDecimal; import java.util.GregorianCalendar; import java.util.Locale; /** * De klasse transatie is verantwoorde...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IRekening; import java.math.BigDecimal; import java.math.RoundingMode; /** * De klasse Rekening heeft als verantwoordelijkheid om rekeninggegevens. zoals * het saldo en kred...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IClient; import java.sql.Timestamp; import java.util.UUID; /** * Sessie object om authenticatie te versimpelen. Eenmalig login nodig waarna de * sessie blijft leven tot 10 m...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IClient; import API.IAuth; import API.IKlant; import API.ILoginAccount; import API.IObservable; import API.IRekening; import Bank.Managers.KlantManager; import Bank.Managers.L...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IObservable; import API.IObserver; import java.io.Serializable; import java.rmi.RemoteException; import java.util.Observable; import java.util.Observer; /** * * @author i...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IKlant; /** De verantwoordelijkheid van de Klasse klant, is het bijhouden van de naam * en woonplaats van de klant. De combinatie van naam en woonplaats moeten uniek * zijn ...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.ILoginAccount; /** * De verantwoordelijkheid van de klasse LoginAccount is het bijhouden va...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Model; import API.IClient; import API.IObservable; import API.ITransactie; import API.ITransactieHandler; import API.TransactieStatus; import API.TransactieType; import Bank.Managers.SessieManag...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import Bank.Model.Klant; import java.util.HashMap; /** * De klantmanager klasse houdt een hashmap waar klanten te zoeken zijn op klantnr */ public class KlantManager { privat...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import java.util.TimerTask; /** * SessieTask om een sessie te kunnen beindigen na inactiviteit. Kan gebruikt * worden i.c.m. java.util.Timer. * */ public class SessieTask extends...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import API.IClient; import Bank.Model.LoginAccount; import Bank.Model.Sessie; import Bank.Model.SessieExpiredException; import java.rmi.RemoteException; import java.util.HashMap; impor...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import Bank.Model.Rekening; import java.util.HashMap; /** * de rekeningmanager klasse houdt een hashmap met rekeningen waarbij * op rekeningnummer gezocht kan worden. */ public c...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import Bank.Model.LoginAccount; import java.util.HashMap; /** * De loginmanager klasse houdt een hashmap bij waarin loginaccounts te vinden zijn op loginnr */ public class LoginMana...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Managers; import API.TransactieStatus; import API.TransactieType; import Bank.Model.Rekening; import Bank.Model.Transactie; import java.util.ArrayList; import java.util.Calendar; import java.uti...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Bank.Server; import API.IAuth; import API.ITransactieHandler; import Bank.Model.TransactieHandler; import Bank.Model.Auth; import java.rmi.AlreadyBoundException; import java.rmi.RemoteException; impo...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Bank.Server; import Bank.Managers.KlantManager; import Bank.Managers.LoginManager; import Bank.Managers.RekeningMan...
Java
package com.nexes.wizard; import java.io.*; public class WizardPanelNotFoundException extends RuntimeException { public WizardPanelNotFoundException() { super(); } }
Java
package com.nexes.wizard; import java.awt.*; import javax.swing.*; /** * A base descriptor class used to reference a Component panel for the Wizard, as * well as provide general rules as to how the panel should behave. */ public class WizardPanelDescriptor { private static final String DEFAULT_PANEL_IDEN...
Java
package com.nexes.wizard; import java.awt.*; import java.awt.event.*; import java.beans.*; import java.util.*; import java.net.*; import javax.swing.*; import javax.swing.border.*; /** * This class implements a basic wizard dialog, where the programmer can * insert one or more Components to act as panels. These pa...
Java
package com.nexes.wizard; import java.beans.*; import java.awt.*; import java.awt.event.*; import java.util.*; import javax.swing.*; import javax.swing.border.*; /** * The model for the Wizard component, which tracks the text, icons, and enabled state * of each of the buttons, as well as the current panel that is ...
Java
package com.salesforce.cliq; import com.nexes.wizard.Wizard; import com.nexes.wizard.WizardPanelDescriptor; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfig; import com.salesforce.cliq.cliconfig.CliConfigDml; import com.salesforce.cliq.cliconfig.CliConfigExport; import com.salesforc...
Java
package com.salesforce.cliq.ui; import net.miginfocom.swing.*; import java.awt.*; import java.awt.event.ActionListener; import java.net.*; import javax.swing.*; import javax.swing.border.*; public class LoginPanel extends CliqWizardPanel { private javax.swing.JPanel jPanel1; private javax.swin...
Java
package com.salesforce.cliq.ui; import net.miginfocom.swing.*; import java.awt.*; import java.awt.event.ActionListener; import java.net.*; import javax.swing.*; import javax.swing.border.*; public class ResultPanel extends CliqWizardPanel { public static final String SHOW_FILES_ACTION_COMMAND = "ShowFi...
Java
package com.salesforce.cliq.ui; import java.awt.*; import java.awt.event.*; import java.net.*; import javax.swing.*; import javax.swing.border.*; import com.salesforce.cliq.cliconfig.CliConfig; import net.miginfocom.swing.MigLayout; public abstract class CliqWizardPanel extends JPanel implements ComponentListener...
Java
package com.salesforce.cliq.ui; import java.awt.*; import java.awt.event.ActionListener; import java.net.*; import javax.swing.*; import javax.swing.border.*; import net.miginfocom.swing.MigLayout; public class EntityPanel extends CliqWizardPanel { private javax.swing.JTextField entityField ...
Java
package com.salesforce.cliq.ui; import java.awt.*; import java.util.*; import java.awt.event.ActionListener; import javax.swing.*; import javax.swing.border.*; import javax.swing.event.DocumentListener; import com.salesforce.cliq.cliconfig.*; import net.miginfocom.swing.MigLayout; public class OperationPan...
Java
package com.salesforce.cliq.ui; import net.miginfocom.swing.*; import java.awt.*; import java.awt.event.ActionListener; import java.net.URL; import javax.swing.*; import javax.swing.event.*; import javax.swing.border.*; public class QueryPanel extends CliqWizardPanel { private javax.swing.JPanel jPan...
Java
package com.salesforce.cliq.ui; import com.nexes.wizard.*; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfigExport; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.event.*; public class QueryPanelDescriptor extends WizardPanelDescript...
Java
package com.salesforce.cliq.ui; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfig; import com.salesforce.cliq.cliconfig.CliConfigExport; import com.salesforce.dataloader.config.Config; import com.nexes.wizard.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListe...
Java
package com.salesforce.cliq.ui; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfig; import com.salesforce.cliq.cliconfig.CliConfigExport; import com.salesforce.dataloader.config.Config; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; im...
Java
package com.salesforce.cliq.ui; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfig; import com.salesforce.cliq.cliconfig.CliConfigDml; import com.salesforce.cliq.cliconfig.CliConfigExport; import com.salesforce.cliq.cliconfig.CliConfigFactory; import com.salesforce.dataloader.config.Co...
Java
package com.salesforce.cliq.ui; import com.salesforce.cliq.*; import com.salesforce.cliq.cliconfig.CliConfigDml; import com.salesforce.dataloader.config.Config; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import com.nexes.wizard.*; public class EntityPanelDescriptor extends W...
Java
package com.salesforce.cliq.cliconfig; import java.io.*; import java.util.*; import java.security.*; import com.sforce.soap.partner.*; import com.sforce.soap.partner.fault.*; import com.sforce.ws.ConnectorConfig; import com.sforce.ws.ConnectionException; import com.salesforce.cliq.DataLoaderCliq; impor...
Java
package com.salesforce.cliq.cliconfig; import com.salesforce.cliq.cliconfig.CliConfig.Operation; import com.salesforce.dataloader.config.Config; import com.sforce.soap.partner.fault.*; import java.io.File; import java.util.regex.*; /** * Extends CliConfig with specific implementation for Export(Extract) o...
Java
package com.salesforce.cliq.cliconfig; import com.salesforce.cliq.DataLoaderCliq; import com.salesforce.dataloader.config.Config; /* * Based on the CliConfig.DataLoaderOperation, constructs a CliConfig object and returns it */ public class CliConfigFactory { public static CliConfig getCliConfig(CliConfig.DataLoa...
Java
package com.salesforce.cliq.cliconfig; import java.io.File; import java.io.FileWriter; import com.salesforce.cliq.cliconfig.CliConfig.DataLoaderOperation; import com.salesforce.cliq.cliconfig.CliConfig.Operation; import com.salesforce.cliq.cliconfig.CliConfigExport.ExportOperation; import com.salesforce.datal...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * AboutJDialog.java * * Created on Dec 23, 2010, 8:45:49 PM */ package dataclustering; /** * * @author Thuan Loc */ public class AboutJDialog extends javax.swing.JDialog { /** Creates new form AboutJDia...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; import java.io.File; import javax.swing.filechooser.FileFilter; /** * * @author Thuan Loc */ class ExtensionFileFilter extends FileFilter { String description; String extensions[]; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; import java.math.BigDecimal; import java.util.Arrays; import java.util.Comparator; import java.util.Iterator; import java.util.PriorityQueue; import java.util.Vector; import javax.swing.JButton; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; import java.util.Vector; /** * * @author Thuan Loc */ public class CONST { static final double INF = (double) 2000000000 * (double) 2000000000; static final int EUCLIDEAN = 1; st...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; import java.util.Vector; /** * * @author Thuan Loc */ public class Cluster { Vector<Point3D> V; Point3D Centroid; double SSE; Cluster(Point3D Centroid) { this.V = ne...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; /** * * @author Thuan Loc */ public class Point3D { double x; double y; double z; Point3D(double x, double y, double z) { this.x = x; this.y = y; this...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dataclustering; /** * * @author Thuan Loc */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application l...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * NewJFrame.java * * Created on Nov 14, 2010, 2:35:36 PM */ package dataclustering; import java.awt.Cursor; import java.awt.Point; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.even...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010, 2011 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use,...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010-2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010-2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy,...
Java
/** * Sparse rss * * Copyright (c) 2010-2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2012 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2012, 2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use,...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
/** * Sparse rss * * Copyright (c) 2010-2013 Stefan Handschuh * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, ...
Java
// Copyright 2012, Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable la...
Java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
Java