code
stringlengths
3
1.18M
language
stringclasses
1 value
package pt.inesc.id.l2f.annotation.execution; /** * * @author Tiago Luis * */ public class LafFile extends File { public LafFile(String file) { super(file); } }
Java
package pt.inesc.id.l2f.annotation.execution; import java.util.Collections; import java.util.LinkedList; import java.util.List; import pt.inesc.id.l2f.annotation.document.laf.LinguisticAnnotationDocument; import pt.inesc.id.l2f.annotation.input.InputDocument; import pt.inesc.id.l2f.annotation.stage.Stage; import pt.i...
Java
package pt.inesc.id.l2f.annotation.execution; /** * * @author Tiago Luis * */ public class TeiFile extends File { public TeiFile(String file) { super(file); } }
Java
package pt.inesc.id.l2f.annotation.execution; public class Path { protected String _path; public Path(String path) { _path = path; } /** * * @return the path */ public String getPath() { return _path; } /** * * @param path the path to set */ public void setPath(String path) { _path = pa...
Java
package pt.inesc.id.l2f.annotation.execution; /** * * @author Tiago Luis * */ public class File extends Path { public File(String file) { super(file); } }
Java
package pt.inesc.id.l2f.annotation.execution; import pt.inesc.id.l2f.annotation.stage.Stage; import pt.inesc.id.l2f.annotation.tool.Tool; public abstract class ParallelExecutionMode extends ExecutionMode { public ParallelExecutionMode(Stage ... stages) { super(stages); } public ParallelExecutionMode(Tool ......
Java
package pt.inesc.id.l2f.annotation.execution; public class Text { private String _text; public Text(String text) { _text = text; } /** * * @return the text */ public String getText() { return _text; } }
Java
package pt.inesc.id.l2f.annotation.execution; public class Directory extends Path { public Directory(String directory) { super(directory); } }
Java
package pt.inesc.id.l2f.annotation.document.util; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import org.apache.hadoop.io.Writable; import org...
Java
package pt.inesc.id.l2f.annotation.document.util; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.apache.hadoop.conf.Configurable; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.Writable; /** * Abs...
Java
package pt.inesc.id.l2f.annotation.document.util; public class Pair<F, S> { // ... private F _first; // ... private S _second; public Pair(F first, S second) { _first = first; _second = second; } /** * * * @return the first */ public F getFirst() { return _first; } /** * * * @retu...
Java
package pt.inesc.id.l2f.annotation.document.util; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Collection; import java.util.HashMap; import java.util.Map; import java.util.Set; import org.apache.hadoop.io.Writable; import org.apache.hadoop.util.ReflectionUtils; /...
Java
package pt.inesc.id.l2f.annotation.document.util; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.apache.hadoop.conf.Configurable; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.Writable; /** * Abs...
Java
package pt.inesc.id.l2f.annotation.document.xml; import java.io.InputStream; import java.io.Reader; import java.util.Collections; import java.util.HashMap; import java.util.Map; import javax.xml.stream.XMLInputFactory; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamException; import java...
Java
package pt.inesc.id.l2f.annotation.document.xml; import java.io.OutputStream; import java.io.Writer; import javax.xml.stream.XMLOutputFactory; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamWriter; public class XMLWriter { private static XMLOutputFactory _xmlof; private XMLStreamWri...
Java
package pt.inesc.id.l2f.annotation.document; import pt.inesc.id.l2f.annotation.document.xml.XMLReader; import pt.inesc.id.l2f.annotation.document.xml.XMLWriter; public interface DocumentElement { /** * * * @param xmlw */ public void writeTo(XMLWriter xmlw); /** * * * @param xmlr */ public v...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Collections; import java.util.Map; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.DocumentElement; imp...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Map; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.DocumentElement; import pt.inesc.id.l2f.annotation...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.List; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.DocumentElement; import pt.inesc.id.l2f.annotation.document.util.ListWritable; imp...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Collections; import java.util.List; import java.util.NoSuchElementException; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.Document; i...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Map; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.DocumentElement; import pt.inesc.id.l2f.annotation...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.List; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.util.ListWritable; import pt.inesc.id.l2f.annotat...
Java
package pt.inesc.id.l2f.annotation.document.laf; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.NoSuchElementException; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f...
Java
package pt.inesc.id.l2f.annotation.document; import pt.inesc.id.l2f.annotation.document.xml.XMLReader; import pt.inesc.id.l2f.annotation.document.xml.XMLWriter; public interface Document { /** * * * @param xmlw */ public void writeTo(XMLWriter xmlw); /** * * * @param xmlr */ public void re...
Java
package pt.inesc.id.l2f.annotation.unit; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import pt.inesc.id.l2f.annotation.document.xml.XMLReader; import pt.inesc.id.l2f.annotation.document.xml.XMLWriter; import pt.inesc.id.l2f.annotation.input.InputDocument; import pt.inesc.id.l2f.an...
Java
package pt.inesc.id.l2f.annotation.unit; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.Collections; import java.util.List; import java.util.UUID; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.Text; import pt.inesc.id.l2f.annotation.tool.Tool...
Java
package pt.inesc.id.l2f.annotation.unit; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import pt.inesc.id.l2f.annotation.document.xml.XMLReader; import pt.inesc.id.l2f.annotation.document.xml.XMLWriter; import pt.inesc.id.l2f.annotation.tool.Tool; import pt.inesc.id.l2f.annotation.t...
Java
package pt.inesc.id.l2f.annotation.unit; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.Documen...
Java
package pt.inesc.id.l2f.annotation.unit; import org.apache.hadoop.io.Writable; import pt.inesc.id.l2f.annotation.document.xml.XMLReader; import pt.inesc.id.l2f.annotation.document.xml.XMLWriter; import pt.inesc.id.l2f.annotation.tool.Tool; import pt.inesc.id.l2f.annotation.tool.ToolVisitor; import pt.inesc.id.l2f.ann...
Java
package pt.inesc.id.l2f.annotation.tool; import pt.inesc.id.l2f.annotation.document.laf.LinguisticAnnotationDocument; import pt.inesc.id.l2f.annotation.document.laf.Segmentation; import pt.inesc.id.l2f.annotation.input.InputDocument; import pt.inesc.id.l2f.annotation.input.TextElement; import pt.inesc.id.l2f.annotatio...
Java
package pt.inesc.id.l2f.annotation.tool; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; /** * * * @author Tiago Luis * */ public interface ToolVisitor { /** * */ public abstract void start(); /** * * *...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import java.io.IOException; import java.net.ServerSocket; import java.util.Arrays; import com.facebook.thrift.transport.TSocket; import com.facebook.thrift.transport.TTransport; import com.facebook.thrift.transport.TTransportException; import com.facebook.thrift.pr...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import java.util.List; import pt.inesc.id.l2f.annotation.unit.ProcessUnit; /** * * * @author Tiago Luis * */ public class ToolExecutionModeUnit extends Thread { // ... protected List<String> _input; // ... protected List<String> _output; // ... protecte...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import pt.inesc.id.l2f.annotation.tool.Tool; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; /** * * * @author Tiago Luis * */ public abstract class ToolExecutionMode exte...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.uti...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import pt.inesc.id.l2f.annotation.tool.Tool; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; /** * * * @author Tiago Luis * */ public class JavaExecutionMode extends ToolE...
Java
package pt.inesc.id.l2f.annotation.tool.execution; import pt.inesc.id.l2f.annotation.tool.Tool; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; public abstract class JNIExecutionMode extends ToolExecutionMode { public JNIExecu...
Java
package pt.inesc.id.l2f.annotation.tool; import pt.inesc.id.l2f.annotation.tool.execution.ToolExecutionMode; import pt.inesc.id.l2f.annotation.tool.execution.ToolExecutionModeUnit; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; i...
Java
package pt.inesc.id.l2f.annotation.tool; import java.util.ArrayList; import java.util.List; import pt.inesc.id.l2f.annotation.document.laf.MorphoSyntacticAnnotation; import pt.inesc.id.l2f.annotation.document.laf.Segment; import pt.inesc.id.l2f.annotation.document.laf.Segmentation; import pt.inesc.id.l2f.annotation.i...
Java
package pt.inesc.id.l2f.annotation.tool; import pt.inesc.id.l2f.annotation.tool.execution.JavaExecutionMode; import pt.inesc.id.l2f.annotation.tool.execution.ToolExecutionModeUnit; import pt.inesc.id.l2f.annotation.unit.InputDocumentProcessUnit; import pt.inesc.id.l2f.annotation.unit.LinguisticAnnotationProcessUnit; ...
Java
/************************************************************************ * * Copyright (c) 2008 L2F (INESC-ID LISBOA) * All Rights Reserved. * * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF L2F (INESC-ID LISBOA) * The copyright notice above does not evidence any * actual or intended publication of such sourc...
Java
package pl.polidea.treeview; import android.content.Context; import android.content.res.TypedArray; import android.graphics.drawable.Drawable; import android.util.AttributeSet; import android.view.Gravity; import android.view.View; import android.widget.AdapterView; import android.widget.ListAdapter; import android.wi...
Java
package pl.polidea.treeview; import android.app.Activity; import android.content.Context; import android.database.DataSetObserver; import android.graphics.drawable.Drawable; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import and...
Java
package pl.polidea.treeview; /** * This exception is thrown when the tree does not contain node requested. * */ public class NodeNotInTreeException extends RuntimeException { private static final long serialVersionUID = 1L; public NodeNotInTreeException(final String id) { super("The tree does not...
Java
/** * Provides expandable Tree View implementation. */ package pl.polidea.treeview;
Java
package pl.polidea.treeview; import android.util.Log; /** * Allows to build tree easily in sequential mode (you have to know levels of * all the tree elements upfront). You should rather use this class rather than * manager if you build initial tree from some external data source. * * @param <T> */ public clas...
Java
package pl.polidea.treeview; /** * Exception thrown when there is a problem with configuring tree. * */ public class TreeConfigurationException extends RuntimeException { private static final long serialVersionUID = 1L; public TreeConfigurationException(final String detailMessage) { super(detailM...
Java
package pl.polidea.treeview; /** * The node being added is already in the tree. * */ public class NodeAlreadyInTreeException extends RuntimeException { private static final long serialVersionUID = 1L; public NodeAlreadyInTreeException(final String id, final String oldNode) { super("The node has al...
Java
package pl.polidea.treeview; /** * Information about the node. * * @param <T> * type of the id for the tree */ public class TreeNodeInfo<T> { private final T id; private final int level; private final boolean withChildren; private final boolean visible; private final boolean expand...
Java
package pl.polidea.treeview; import java.io.Serializable; import java.util.List; import android.database.DataSetObserver; /** * Manages information about state of the tree. It only keeps information about * tree elements, not the elements themselves. * * @param <T> * type of the identifier for nodes...
Java
package pl.polidea.treeview; import java.io.Serializable; import java.util.LinkedList; import java.util.List; /** * Node. It is package protected so that it cannot be used outside. * * @param <T> * type of the identifier used by the tree */ class InMemoryTreeNode<T> implements Serializable { priv...
Java
package pl.polidea.treeview; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import android.database.DataSetObserver; /** * In-memory manager of tree state. * ...
Java
package pl.polidea.treeview.demo; import java.util.Arrays; import java.util.Set; import pl.polidea.treeview.AbstractTreeViewAdapter; import pl.polidea.treeview.R; import pl.polidea.treeview.TreeNodeInfo; import pl.polidea.treeview.TreeStateManager; import android.view.View; import android.view.ViewGroup; import andro...
Java
package pl.polidea.treeview.demo; import java.io.Serializable; import java.util.HashSet; import java.util.Set; import pl.polidea.treeview.InMemoryTreeStateManager; import pl.polidea.treeview.R; import pl.polidea.treeview.TreeBuilder; import pl.polidea.treeview.TreeNodeInfo; import pl.polidea.treeview.TreeStateManager...
Java
/** * Provides just demo of the TreeView widget. */ package pl.polidea.treeview.demo;
Java
package pl.polidea.treeview.demo; import java.util.Set; import pl.polidea.treeview.R; import pl.polidea.treeview.TreeNodeInfo; import pl.polidea.treeview.TreeStateManager; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import android.view.View...
Java
/*___Generated_by_IDEA___*/ package com.birdorg.anpr.sdk.simple.camera.example; /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ public final class Manifest { }
Java
/*___Generated_by_IDEA___*/ package com.birdorg.anpr.sdk.simple.camera.example; /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ public final class BuildConfig { public final static boolean DEBUG = Boolean.parseBoolean(null); }
Java
package com.example.mymodule.app; public class ftp4j { }
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
/* * ftp4j - A pure Java FTP client library * * Copyright (C) 2008-2010 Carlo Pelliccia (www.sauronsoftware.it) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version * 2.1, as published by the Free Software Foundati...
Java
package com.birdorg.anpr.sdk.simple.camera.example; import android.app.AlertDialog; import android.app.Service; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.media.AsyncPlayer; import android.media.AudioManager; import android.net.Uri; i...
Java
package com.birdorg.anpr.sdk.simple.camera.example; import android.app.ListActivity; import android.content.Intent; import android.os.Bundle; import android.os.Environment; import android.widget.ListView; import android.widget.Toast; import android.view.View; import java.io.File; import java.text.DateFormat; import j...
Java
package com.birdorg.anpr.sdk.simple.camera.example; import android.app.Activity; import android.app.AlertDialog; import android.app.ListActivity; import android.app.ProgressDialog; import android.content.DialogInterface; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.Bi...
Java
package com.birdorg.anpr.sdk.simple.camera.example; /** * Created by john on 7/20/2014. */ public class DefaultMessages{ public String color1="Ngjyra: E Zeze"; public String color2="Ngjyra: E Bardhe"; public String color3="Ngjyra: E Kuqe"; public String color4="Ngjyra: Gri"; public String...
Java
package com.birdorg.anpr.sdk.simple.camera.example; import android.app.Activity; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.ImageView; public class Konfigurimet extends Activity { protected void onCreate(Bundle savedInstanceState) { ...
Java
package com.birdorg.anpr.sdk.simple.camera.example; import android.app.Activity; import android.app.AlertDialog; import android.app.ListActivity; import android.app.ProgressDialog; import android.content.DialogInterface; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.Bi...
Java