code
stringlengths
3
1.18M
language
stringclasses
1 value
package cx.hell.android.pdfview; public class BookmarkEntry implements Comparable<BookmarkEntry> { public int numberOfPages; public int page; public float absoluteZoomLevel; public int rotation; public int offsetX; public String comment; public BookmarkEntry(int numberOfPages, int page, float absolu...
Java
package cx.hell.android.pdfview; import java.io.File; public class FileListEntry { private String label = null; private File file = null; private boolean isDirectory = false; private int type = NORMAL; private int recentNumber = -1; static final int NORMAL = 0; static final int HOME = 1; stati...
Java
/* * Copyright 2010 Ludovic Drolez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This prog...
Java
package cx.hell.android.pdfview; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; import android.app.Activity; import android.graphics.Bitmap; import android.os.SystemCl...
Java
package cx.hell.android.lib.view; // #ifdef pro // // import java.util.Collections; // import java.util.HashMap; // import java.util.List; // import java.util.Map; // import java.util.Stack; // // import android.content.Context; // import android.graphics.Color; // import android.util.Log; // import and...
Java
package cx.hell.android.lib.pdf; import java.io.File; import java.io.FileDescriptor; import java.util.List; import cx.hell.android.lib.pagesview.FindResult; // #ifdef pro // import java.util.ArrayList; // import java.util.Stack; // import cx.hell.android.lib.view.TreeView; // import cx.hell.android.lib.v...
Java
package cx.hell.android.lib.pagesview; // you're encouraged to use this piece of code for anything, either commercial or free, // either close-sourced or open-sourced. However, do put a line in your "About" section // saying that you used a code from dairyknight (dairyknight@gmail.com). That's the only request ...
Java
package cx.hell.android.lib.pagesview; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import android.graphics.Rect; import android.util.Log; /** * Find result. */ public class FindResult { /** * Logging tag. */ public static final String TAG = "cx.hell.andr...
Java
package cx.hell.android.lib.pagesview; /** * Tile definition. * Can be used as a key in maps (hashable, comparable). */ public class Tile { /** * X position of tile in pixels. */ private int x; /** * Y position of tile in pixels. */ private int y; private int zoom; private in...
Java
package cx.hell.android.lib.pagesview; public class RenderingException extends Exception { private static final long serialVersionUID = 1010978161527539002L; public RenderingException(String message) { super(message); } }
Java
package cx.hell.android.lib.pagesview; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.graphics.Bitmap; import android.graphics.Canvas; i...
Java
package cx.hell.android.lib.pagesview; import java.util.Map; import android.graphics.Bitmap; /** * Allow renderer to notify view that new bitmaps are ready. * Implemented by PagesView. */ public interface OnImageRenderedListener { void onImagesRendered(Map<Tile,Bitmap> renderedImages); void onRender...
Java
package cx.hell.android.lib.pagesview; import java.util.Collection; import android.graphics.Bitmap; /** * Provide content of pages rendered by PagesView. */ public abstract class PagesProvider { /** * Get page image tile for drawing. */ public abstract Bitmap getPageBitmap(Tile tile); /...
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 server; import javax.ws.rs.ClientErrorException; import javax.ws.rs.client.Client; import javax.ws.rs.client.WebTar...
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 server; import java.io.IOException; import java.io.PrintWriter; import java.io.StringReader; import javax.json.Jso...
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 server; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; 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 beans; import javax.ejb.Local; /** * * @author Anneleen */ @Local public interface StatelessBeanLocal { ...
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 beans; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import javax.annotat...
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 beans; import javax.ejb.Local; import javax.servlet.http.HttpSession; /** * * @author Anneleen */ @Local ...
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 beans; import javax.annotation.Resource; import javax.ejb.ActivationConfigProperty; import javax.ejb.MessageDriven;...
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 beans; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import javax.annot...
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 beans; import javax.interceptor.AroundInvoke; import javax.interceptor.InvocationContext; /** * * @author Ann...
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 beans; import java.util.Date; import java.util.logging.Level; import java.util.logging.Logger; import javax.annota...
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 database; import java.util.List; import javax.ejb.Local; /** * * @author Ewoud */ @Local public interface...
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 database; import java.util.List; import javax.ejb.Local; /** * * @author Ewoud */ @Local public interface...
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 database; import java.util.List; import javax.ejb.Local; /** * * @author Ewoud */ @Local public interface...
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 database; /** * * @author Ewoud */ public enum ItemType { BREAD, PASTRY, PIE, CAKE, P...
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 database; import java.util.List; import javax.ejb.Local; /** * * @author Ewoud */ @Local public interface...
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 database; import java.util.List; import javax.ejb.Local; /** * * @author Ewoud */ @Local public interface...
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 database; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceC...
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 database; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceC...
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 database; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persist...
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 database; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persist...
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 database; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persist...
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 database; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceC...
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 database; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceC...
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 database; import java.util.List; import javax.persistence.EntityManager; /** * * @author Anneleen */ publi...
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 database; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basi...
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 database; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceC...
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 database; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import jav...
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 webservice; import database.Item; import database.ItemFacadeLocal; import database.ItemType; import java.util.List...
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 webservice; import database.Item; import database.ItemFacadeLocal; import java.util.logging.Level; import java.uti...
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 webservice; import java.util.Set; import javax.ws.rs.core.Application; /** * * @author Ewoud */ @javax.ws....
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 beans; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import javax.annotat...
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 server; import database.Item; import database.ItemFacadeLocal; import database.ItemType; import java.io.IOExceptio...
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 server; import beans.StatelessBeanLocal; import java.io.IOException; import java.io.PrintWriter; import javax.ejb....
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 server; import beans.pageCountLocal; import java.io.IOException; import java.util.logging.Level; import java.u...
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 server; import beans.SessionBean; import java.io.IOException; import java.io.PrintWriter; import javax.ejb.EJB; i...
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 server; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; import javax....
Java
package data; import java.io.IOException; import java.io.Reader; import java.util.Iterator; import org.encog.ml.data.MLData; import org.encog.ml.data.MLDataPair; import org.encog.ml.data.MLDataSet; import org.encog.ml.data.basic.BasicMLData; import org.encog.neural.data.NeuralData; import org.encog.neural.data.basic....
Java
package data; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ import org.encog.ml.MLProperties; import org.encog.ml.data.MLData; import org.encog.ml.data.MLDataPair; import org.encog.neural.data.NeuralDataPair; import org.encog.neural.data.basic.BasicNeuralData; i...
Java
package data; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ import org.encog.ml.data.MLData; import org.encog.neural.data.NeuralData; import weka.core.Attribute; import weka.core.Instance; /** * * @author root */ public class WekaNeuralData extends Instance ...
Java
import classifier.WekaClassifier; import data.WekaNeuralDataSet; import java.io.File; import java.io.FileReader; import java.io.Reader; import org.encog.ConsoleStatusReportable; import org.encog.neural.networks.BasicNetwork; import org.encog.neural.pattern.FeedForwardPattern; import org.encog.neural.prune.PruneIncreme...
Java
package classifier; import data.WekaNeuralData; import data.WekaNeuralDataSet; import org.encog.ml.data.MLData; import org.encog.ml.train.MLTrain; import org.encog.neural.networks.BasicNetwork; import weka.classifiers.Classifier; import weka.core.Instance; import weka.core.Instances; /* * To change this template, c...
Java
package com.climoilou.modele; public class Livre { private String auteur; private String titre; private int anneePublication; public Livre(String pStrAuteur, String pStrTitre, int pIntAnneePublication) { this.auteur = pStrAuteur; this.titre = pStrTitre; this.anneePublication = pIntAnneePublicatio...
Java
package com.anli.sqlexecution.exceptions; public class DatabaseException extends RuntimeException { public DatabaseException(Throwable cause) { super(cause); } public DatabaseException(String message) { super(message); } public DatabaseException(String message, Throwable cause) {...
Java
package com.anli.sqlexecution.handling; import com.anli.sqlexecution.transformation.SqlTransformer; import com.anli.sqlexecution.transformation.TransformerFactory; import java.sql.ResultSet; import java.sql.SQLException; public class TransformingResultSet { protected ResultSet resultSet; protected Transforme...
Java
package com.anli.sqlexecution.handling; import java.sql.SQLException; public interface ResultSetHandler<T> { T handle(TransformingResultSet resultSet) throws SQLException; }
Java
package com.anli.sqlexecution.execution; import com.anli.sqlexecution.handling.ResultSetHandler; import com.anli.sqlexecution.exceptions.DatabaseException; import com.anli.sqlexecution.handling.TransformingResultSet; import com.anli.sqlexecution.transformation.SqlTransformer; import com.anli.sqlexecution.transformatio...
Java
package com.anli.sqlexecution.transformation; import java.util.HashMap; import java.util.Map; public class MapBasedTransformerFactory implements TransformerFactory { protected final Map<Class, SqlTransformer> transformerMap; public MapBasedTransformerFactory(Map<Class, SqlTransformer> map) { this.tr...
Java
package com.anli.sqlexecution.transformation; public interface TransformerFactory { <J> SqlTransformer<J, ?> getTransformer(Class<? extends J> javaClass); }
Java
package com.anli.sqlexecution.transformation; public interface SqlTransformer<J, S> { S toSql(J source); J toJava(S source); Class<? extends J> getJavaClass(); Class<? extends S> getSqlClass(); }
Java
package com.anli.integrationtesting.servlets; import com.anli.integrationtesting.execution.TestExecutor; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServ...
Java
package com.anli.integrationtesting.execution; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; public class M...
Java
package com.anli.integrationtesting.execution; public interface TestExecutor { void test() throws Exception; }
Java
package com.anli.integrationtesting; public class Test { protected String name; protected String className; public Test(String name, String className) { this.name = name; this.className = className; } public String getName() { return name; } public void setName(S...
Java
package com.anli.configuration; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Configurator { private static final Logger LOG = Logg...
Java
package com.anli.configuration; import java.util.Map; public class ConfigSnapshot { protected String group; protected Map<String, String> properties; public ConfigSnapshot(String group, Map<String, String> properties) { this.properties = properties; } public String getProperty(String id...
Java
package com.anli.busstation.dal.sql.test; import com.anli.configuration.Configurator; import com.anli.sqlexecution.execution.SqlExecutor; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class DBHelper...
Java
package com.anli.busstation.dal.sql.test; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.vehicles.Bus; import com.anli.busstation.dal.interfaces.entities.staff.DriverSkill; import com.anli.busstation.dal.interfaces.entities.staff.Employee; import com.anl...
Java
package com.anli.busstation.dal.sql.test; import com.anli.sqlexecution.handling.ResultSetHandler; import com.anli.sqlexecution.handling.TransformingResultSet; import java.math.BigDecimal; import java.math.BigInteger; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; public class IdSelec...
Java
package com.anli.busstation.dal.ejb3.test; import com.anli.busstation.dal.test.servlet.AbstractTester; public class Ejb3Tester extends AbstractTester { @Override protected String getBasePackage() { return "com.anli.busstation.dal.ejb3.test"; } @Override protected String getExecutorUrl() ...
Java
package com.anli.busstation.dal.ejb3.test; import com.anli.busstation.dal.ejb3.cache.CacheAccessor; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.factories.ProviderFactory; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal....
Java
package com.anli.busstation.dal.ejb3.test; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.factories.ProviderFactory; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.sql.test.SqlFixtureCreator; import java.math.BigInteger; ...
Java
package com.anli.busstation.dal.ejb2.test; import com.anli.busstation.dal.ejb2.entities.BSEntityImpl; import com.anli.busstation.dal.ejb2.factories.ProviderProxyFactory; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.factories.ProviderFactory; import com.anli.bus...
Java
package com.anli.busstation.dal.ejb2.test; import com.anli.busstation.dal.ejb2.entities.BSEntityImpl; import com.anli.busstation.dal.ejb2.factories.ProviderProxyFactory; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.factories.ProviderFactory; import com.anli.bus...
Java
package com.anli.busstation.dal.ejb2.test; import com.anli.busstation.dal.test.servlet.AbstractTester; public class Ejb2Tester extends AbstractTester { @Override protected String getBasePackage() { return "com.anli.busstation.dal.ejb2.test"; } @Override protected String getExecutorUrl() ...
Java
package com.anli.busstation.dal.jpa.extractors; import com.anli.busstation.dal.jpa.entities.maintenance.BusServiceImpl; import com.anli.busstation.dal.jpa.entities.maintenance.StationServiceImpl; public class TechnicalAssignmentExtractor extends BaseJoinExtractor { @Override protected Class[] getClasses() { ...
Java
package com.anli.busstation.dal.jpa.extractors; import com.anli.busstation.dal.jpa.entities.staff.DriverImpl; import com.anli.busstation.dal.jpa.entities.staff.MechanicImpl; import com.anli.busstation.dal.jpa.entities.staff.SalesmanImpl; public class EmployeeExtractor extends BaseJoinExtractor { @Override pr...
Java
package com.anli.busstation.dal.jpa.extractors; import com.anli.busstation.dal.jpa.entities.maintenance.BusRefuellingImpl; import com.anli.busstation.dal.jpa.entities.maintenance.BusRepairmentImpl; public class BusServiceExtractor extends BaseJoinExtractor { @Override protected Class[] getClasses() { ...
Java
package com.anli.busstation.dal.jpa.extractors; import java.util.HashMap; import java.util.Map; import javax.persistence.PrimaryKeyJoinColumn; import javax.persistence.Table; import org.eclipse.persistence.descriptors.ClassExtractor; import org.eclipse.persistence.sessions.Record; import org.eclipse.persistence.sessio...
Java
package com.anli.busstation.dal.jpa.converters; import javax.persistence.AttributeConverter; import javax.persistence.Converter; @Converter public class BooleanConverter implements AttributeConverter<Boolean, Integer> { @Override public Integer convertToDatabaseColumn(Boolean x) { return Boolean.TRUE...
Java
package com.anli.busstation.dal.jpa.converters; import java.sql.Timestamp; import javax.persistence.AttributeConverter; import javax.persistence.Converter; import org.joda.time.DateTime; @Converter public class DateTimeConverter implements AttributeConverter<DateTime, Timestamp> { @Override public Timestamp ...
Java
package com.anli.busstation.dal.jpa.reflective; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.LinkedList; import java.util.List; import java.util.Set;...
Java
package com.anli.busstation.dal.jpa.reflective; import java.util.HashMap; import java.util.Map; import javax.inject.Inject; import javax.inject.Singleton; @Singleton public class DescriptorHolder { protected final Map<Class, EntityDescriptor> relationHolders; protected final EntityDescriptorBuilder relationB...
Java
package com.anli.busstation.dal.jpa.reflective; import java.util.Collection; public class EntityDescriptor { protected final String entityName; protected final Collection<FieldDescriptor> fields; protected final FieldDescriptor idField; public EntityDescriptor(String entityName, Collection<FieldDesc...
Java
package com.anli.busstation.dal.jpa.reflective; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.lang.reflect.ParameterizedType; import java.util.Collection; import java.util.LinkedList; import java.util.List; import javax.inject.Singleton; import javax.pe...
Java
package com.anli.busstation.dal.jpa.reflective; import java.lang.reflect.Field; import java.lang.reflect.Method; import javax.persistence.Entity; import javax.persistence.MappedSuperclass; public class FieldDescriptor { protected final Method getter; protected final Method setter; protected final Class c...
Java
package com.anli.busstation.dal.jpa.entities; import com.anli.busstation.dal.interfaces.entities.BSEntity; import java.math.BigInteger; import java.util.Iterator; import java.util.List; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence....
Java
package com.anli.busstation.dal.jpa.entities.maintenance; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.maintenance.BusRefuelling; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.PrimaryKeyJoinColumn; import ja...
Java
package com.anli.busstation.dal.jpa.entities.maintenance; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.maintenance.StationService; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.PrimaryKeyJoinColumn; import j...
Java
package com.anli.busstation.dal.jpa.entities.maintenance; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.maintenance.BusRepairment; import java.math.BigDecimal; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Pr...
Java
package com.anli.busstation.dal.jpa.entities.maintenance; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.jpa.entities.staff.MechanicImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.staff.Mechanic; import com....
Java
package com.anli.busstation.dal.jpa.entities.maintenance; import com.anli.busstation.dal.jpa.entities.vehicles.BusImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.vehicles.Bus; import com.anli.busstation.dal.interfaces.entities.maintenance.BusService...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.traffic.RidePoint; import com.anli.busstation.dal.interfaces.entities.traffic.RoutePoint; impor...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.jpa.entities.staff.SalesmanImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.traffic.RidePoint; import com.a...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.jpa.entities.vehicles.BusImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.vehicles.Bus; import com.anli.bus...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.jpa.entities.geography.StationImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.traffic.RoutePoint; import c...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.busstation.dal.interfaces.entities.traffic.Ride; import com.anli.busstation.dal.interfaces.entities.traffic.Route; import com.anli...
Java
package com.anli.busstation.dal.jpa.entities.traffic; import com.anli.busstation.dal.jpa.entities.BSEntityImpl; import com.anli.busstation.dal.jpa.entities.staff.DriverImpl; import com.anli.busstation.dal.jpa.entities.geography.RoadImpl; import com.anli.busstation.dal.interfaces.entities.BSEntity; import com.anli.buss...
Java