file_name stringlengths 6 86 | file_path stringlengths 45 249 | content stringlengths 47 6.26M | file_size int64 47 6.26M | language stringclasses 1
value | extension stringclasses 1
value | repo_name stringclasses 767
values | repo_stars int64 8 14.4k | repo_forks int64 0 1.17k | repo_open_issues int64 0 788 | repo_created_at stringclasses 767
values | repo_pushed_at stringclasses 767
values |
|---|---|---|---|---|---|---|---|---|---|---|---|
VerticalScrollablePanel.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/VerticalScrollablePanel.java | package org.esa.snap.ui.loading;
import java.awt.Rectangle;
import javax.swing.Scrollable;
import javax.swing.SwingConstants;
import javax.swing.JPanel;
import java.awt.LayoutManager;
import java.awt.Dimension;
/**
* Created by jcoravu on 23/9/2019.
*/
public class VerticalScrollablePanel extends JPanel implements ... | 1,837 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
GenericRunnable.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/GenericRunnable.java | package org.esa.snap.ui.loading;
/**
* Created by jcoravu on 29/3/2019.
*/
public abstract class GenericRunnable<ItemType> implements Runnable {
private final ItemType item;
public GenericRunnable(ItemType item) {
this.item = item;
}
protected abstract void execute(ItemType item);
@Ov... | 387 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
ComponentsEnabled.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/ComponentsEnabled.java | package org.esa.snap.ui.loading;
/**
* Created by jcoravu on 28/12/2018.
*/
public interface ComponentsEnabled {
public void setComponentsEnabled(boolean enabled);
}
| 174 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
LoadingIndicatorPanel.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/LoadingIndicatorPanel.java | package org.esa.snap.ui.loading;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
import java.awt.*;
/**
* Created by jcoravu on 28/12/2018.
*/
public class LoadingIndicatorPanel extends JPanel implements LoadingIndicator {
private final Object lockObject;
priva... | 4,454 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
CustomFileChooser.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/CustomFileChooser.java | package org.esa.snap.ui.loading;
import org.apache.commons.lang3.StringUtils;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JFileChooser;
import javax.swing.UIManager;
import javax.swing.filechooser.FileFilter;
import javax.swing.text.JTextComponent;
import java.awt.Component;
import ja... | 7,370 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
LoadingIndicator.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/LoadingIndicator.java | package org.esa.snap.ui.loading;
/**
* Created by jcoravu on 31/12/2018.
*/
public interface LoadingIndicator {
public boolean isRunning(int threadId);
public boolean onDisplay(int threadId, String messageToDisplay);
public boolean onHide(int threadId);
}
| 274 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
AbstractModalDialog.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/AbstractModalDialog.java | package org.esa.snap.ui.loading;
import org.esa.snap.ui.AbstractDialog;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JLayeredPane;
import javax.swing.JPanel;
import javax.swing.JRootPane;
import javax.swing.KeyStroke;
import javax... | 11,724 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
CustomButton.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/CustomButton.java | package org.esa.snap.ui.loading;
import javax.swing.*;
import java.awt.*;
public class CustomButton extends JButton {
private final int preferredHeight;
public CustomButton(String text, int preferredHeight) {
super(text);
if (preferredHeight <= 0) {
throw new IllegalArgumentExce... | 1,131 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
CustomComboBox.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/CustomComboBox.java | package org.esa.snap.ui.loading;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import javax.swing.border.MatteBorder;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
/**
* Created by jcoravu on 10/2/2020.
*/
public class C... | 5,985 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
SwingUtils.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/SwingUtils.java | package org.esa.snap.ui.loading;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;
import javax.swing.border.LineBorder;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.image.Buff... | 6,487 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
PairRunnable.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/PairRunnable.java | package org.esa.snap.ui.loading;
/**
* Created by jcoravu on 19/2/2020.
*/
public abstract class PairRunnable<First, Second> implements Runnable {
private final First first;
private final Second second;
public PairRunnable(First first, Second second) {
this.first = first;
this.second = ... | 489 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
CircularProgressIndicatorLabel.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/loading/CircularProgressIndicatorLabel.java | package org.esa.snap.ui.loading;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* Created by jcoravu on 28/12/2018.
*/
public class CircularProgressIndicatorLabel extends JLabel {
private final CircularProgressPainter circularProgressPainte... | 3,005 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
AbstractDiagramGraph.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/AbstractDiagramGraph.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 1,604 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramGraphStyle.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramGraphStyle.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 987 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DefaultDiagramGraph.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DefaultDiagramGraph.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 3,653 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DefaultDiagramGraphStyle.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DefaultDiagramGraphStyle.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 1,941 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
Diagram.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/Diagram.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 22,134 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramCanvas.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramCanvas.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 8,759 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramGraph.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramGraph.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 1,147 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramGraphIO.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramGraphIO.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 10,251 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramAxis.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramAxis.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 7,853 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DiagramChangeListener.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/diagram/DiagramChangeListener.java | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | 841 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
FilteredListModel.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/util/FilteredListModel.java | package org.esa.snap.ui.util;
import javax.swing.AbstractListModel;
import javax.swing.ListModel;
import javax.swing.SwingWorker;
import javax.swing.event.ListDataEvent;
import javax.swing.event.ListDataListener;
import java.util.ArrayList;
// found at http://stackoverflow.com/questions/14758313/filtering-jlist-based... | 2,349 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
CustomTextField.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/components/CustomTextField.java | package org.esa.snap.ui.components;
import org.esa.snap.ui.loading.SwingUtils;
import javax.swing.*;
import java.awt.*;
public class CustomTextField extends JTextField {
private final int preferredHeight;
public CustomTextField(int preferredHeight, Color backgroundColor) {
super();
if (pre... | 1,403 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
DatePickerComboBox.java | /FileExtraction/Java_unseen/senbox-org_snap-desktop/snap-ui/src/main/java/org/esa/snap/ui/components/DatePickerComboBox.java | package org.esa.snap.ui.components;
import org.esa.snap.ui.loading.SwingUtils;
import org.jdesktop.swingx.JXMonthView;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.MatteBorder;
import javax.swing.text... | 7,190 | Java | .java | senbox-org/snap-desktop | 132 | 60 | 9 | 2014-10-30T11:53:56Z | 2024-05-07T21:09:33Z |
ExploreTabs.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/ExploreTabs.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 4,237 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Person.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Person.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 8,740 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
ExploreCommon.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/ExploreCommon.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 4,308 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscribeCollection.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/SubscribeCollection.java | package com.arantius.tivocommander;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Locale;
import java.util.TimeZone;
import android.app.ProgressDialog;
import android.os.Bundle;
impor... | 13,055 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Device.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Device.java | package com.arantius.tivocommander;
public class Device {
public String addr = null;
public String device_name = null;
public Long id = null;
public String mak = null;
public Integer port = 1413;
public String tsn = "-";
}
| 246 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SeasonPass.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/SeasonPass.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 17,293 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Explore.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Explore.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 18,562 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Suggestions.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Suggestions.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 5,460 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Discover.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Discover.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 22,398 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Help.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Help.java | package com.arantius.tivocommander;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.ArrayList;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface... | 4,140 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
NowShowing.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/NowShowing.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 18,280 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
DownloadImageTask.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/DownloadImageTask.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,098 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Upcoming.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Upcoming.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 9,887 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Remote.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Remote.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 8,257 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Connect.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Connect.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,864 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Database.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Database.java | package com.arantius.tivocommander;
import java.util.ArrayList;
import java.util.Locale;
import android.content.ContentValues;
import android.content.Context;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteO... | 5,589 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Utils.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Utils.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 13,579 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscribeOffer.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/SubscribeOffer.java | package com.arantius.tivocommander;
import android.os.Bundle;
import android.view.View;
import com.arantius.tivocommander.rpc.MindRpc;
import com.arantius.tivocommander.rpc.request.Subscribe;
import com.arantius.tivocommander.rpc.response.MindRpcResponse;
import com.arantius.tivocommander.rpc.response.MindRpcResponse... | 1,469 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Credits.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Credits.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 5,597 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
ShowList.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/ShowList.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 16,315 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscriptionType.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/SubscriptionType.java | package com.arantius.tivocommander;
enum SubscriptionType { RECORDING, SEASON_PASS, SINGLE_OFFER, WISHLIST; }
| 114 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MyShows.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/MyShows.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 13,811 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Search.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Search.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 8,689 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
About.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/About.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,659 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
ToDo.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/ToDo.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 5,372 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Settings.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/Settings.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,895 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscribeBase.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/SubscribeBase.java | package com.arantius.tivocommander;
import android.app.Activity;
import android.os.Bundle;
import android.view.MenuItem;
import android.view.Window;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import com.arantius.tivocommander.rpc.request.Subscribe;
abstract public class SubscribeBase extends ... | 2,594 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
LinearListView.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/views/LinearListView.java | package com.arantius.tivocommander.views;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import android.content.Context;
import android.database.DataSetObserver;
import android.util.AttributeSet;
import android.view.View;
import android.widget.Adapter;
import android.widget.LinearLayout... | 1,820 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
TivoScrubBar.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/views/TivoScrubBar.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 9,000 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcInput.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/MindRpcInput.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,398 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpc.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/MindRpc.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 17,736 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcOutput.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/MindRpcOutput.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,559 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscriptionSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/SubscriptionSearch.java | package com.arantius.tivocommander.rpc.request;
import java.util.ArrayList;
import com.arantius.tivocommander.rpc.MindRpc;
public class SubscriptionSearch extends MindRpcRequest {
public SubscriptionSearch() {
super("subscriptionSearch");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);
mDataMap.put("... | 949 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
RecordingFolderItemEmpty.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/RecordingFolderItemEmpty.java | package com.arantius.tivocommander.rpc.request;
import com.arantius.tivocommander.rpc.MindRpc;
public class RecordingFolderItemEmpty extends MindRpcRequest {
public RecordingFolderItemEmpty(String recordingFolderItemId) {
super("recordingFolderItemEmpty");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);
... | 401 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
TunerStateEventRegister.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/TunerStateEventRegister.java | package com.arantius.tivocommander.rpc.request;
public class TunerStateEventRegister extends MindRpcRequest {
public TunerStateEventRegister() {
super("tunerStateEventRegister");
mResponseCount = "multiple";
}
}
| 233 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SubscriptionsReprioritize.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/SubscriptionsReprioritize.java | package com.arantius.tivocommander.rpc.request;
import java.util.ArrayList;
import com.arantius.tivocommander.rpc.MindRpc;
public class SubscriptionsReprioritize extends MindRpcRequest {
public SubscriptionsReprioritize(ArrayList<String> subscriptionIds) {
super("subscriptionsReprioritize");
mDataMap.put(... | 429 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
UiNavigate.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/UiNavigate.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,931 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
UpcomingSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/UpcomingSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,263 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
CancelRpc.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/CancelRpc.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,716 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
TodoRecordingSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/TodoRecordingSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,372 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
BodyAuthenticate.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/BodyAuthenticate.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,232 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
SuggestionsSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/SuggestionsSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,417 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
VideoPlaybackInfoEventRegister.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/VideoPlaybackInfoEventRegister.java | package com.arantius.tivocommander.rpc.request;
public class VideoPlaybackInfoEventRegister extends MindRpcRequest {
public VideoPlaybackInfoEventRegister() {
super("videoPlaybackInfoEventRegister");
mResponseCount = "multiple";
mDataMap.put("throttleDelay", 1000);
}
public VideoPlaybackInfoEventReg... | 480 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
OfferSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/OfferSearch.java | package com.arantius.tivocommander.rpc.request;
import com.arantius.tivocommander.rpc.MindRpc;
public class OfferSearch extends MindRpcRequest {
public OfferSearch() {
super("offerSearch");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);
mDataMap.put("count", 50);
mDataMap.put("namespace", "refser... | 1,022 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
UnifiedItemSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/UnifiedItemSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,935 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Subscribe.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/Subscribe.java | package com.arantius.tivocommander.rpc.request;
import java.util.HashMap;
import com.arantius.tivocommander.rpc.MindRpc;
import com.fasterxml.jackson.databind.JsonNode;
public class Subscribe extends MindRpcRequest {
public Subscribe() {
super("subscribe");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);... | 1,825 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
RecordingUpdate.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/RecordingUpdate.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,211 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
RecordingSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/RecordingSearch.java | package com.arantius.tivocommander.rpc.request;
import java.util.ArrayList;
import com.arantius.tivocommander.rpc.MindRpc;
import com.fasterxml.jackson.databind.JsonNode;
public class RecordingSearch extends MindRpcRequest {
public RecordingSearch(String recordingId) {
super("recordingSearch");
mDataMap.p... | 772 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
PersonSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/PersonSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,567 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
TodoSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/TodoSearch.java | package com.arantius.tivocommander.rpc.request;
import com.arantius.tivocommander.rpc.MindRpc;
public class TodoSearch extends MindRpcRequest {
public TodoSearch() {
super("recordingSearch");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);
mDataMap.put("format", "idSequence");
mDataMap.put("state"... | 373 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
RecordingFolderItemSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/RecordingFolderItemSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,954 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
ContentSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/ContentSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,246 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
PersonCreditsSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/PersonCreditsSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,545 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
BaseSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/BaseSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,836 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
BodyConfigSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/BodyConfigSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,084 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
KeyEventSend.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/KeyEventSend.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,162 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
CollectionSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/CollectionSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,354 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
Unsubscribe.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/Unsubscribe.java | package com.arantius.tivocommander.rpc.request;
import com.arantius.tivocommander.rpc.MindRpc;
public class Unsubscribe extends MindRpcRequest {
public Unsubscribe(String subscriptionId) {
super("unsubscribe");
mDataMap.put("bodyId", MindRpc.mTivoDevice.tsn);
mDataMap.put("subscriptionId", subscriptionI... | 330 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcRequest.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/MindRpcRequest.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 3,256 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
WhatsOnSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/WhatsOnSearch.java | package com.arantius.tivocommander.rpc.request;
public class WhatsOnSearch extends MindRpcRequest {
public WhatsOnSearch() {
super("whatsOnSearch");
mResponseCount = "multiple";
}
}
| 203 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
CreditsSearch.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/request/CreditsSearch.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,790 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcResponseFactory.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/response/MindRpcResponseFactory.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 2,098 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcResponse.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/response/MindRpcResponse.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,479 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
MindRpcResponseListener.java | /FileExtraction/Java_unseen/arantius_TiVo-Commander/src/com/arantius/tivocommander/rpc/response/MindRpcResponseListener.java | /*
DVR Commander for TiVo allows control of a TiVo Premiere device.
Copyright (C) 2011 Anthony Lieuallen (arantius@gmail.com)
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 2 of the ... | 1,119 | Java | .java | arantius/TiVo-Commander | 29 | 8 | 2 | 2011-08-15T22:49:33Z | 2021-04-02T22:05:57Z |
TsTasks.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/tasks/TsTasks.java | package net.heartsome.cat.ts.test.ui.tasks;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
/**
* 一些基本任务
* @author felix_lu
... | 2,413 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
SegmentAsserts.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/tasks/SegmentAsserts.java | package net.heartsome.cat.ts.test.ui.tasks;
import static org.junit.Assert.assertTrue;
import net.heartsome.cat.ts.test.ui.editors.XlfEditor;
import net.heartsome.cat.ts.test.ui.utils.XliffUtil;
import net.heartsome.test.swtbot.widgets.HsSWTBotStyledText;
/**
* TS 的一些断言方法,其中有些是直接断言,有些则是返回布尔值
* @author felix_lu
*/
... | 7,571 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
Waits.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/tasks/Waits.java | package net.heartsome.cat.ts.test.ui.tasks;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.cat.ts.test.ui.waits.IsProjectExist;
import net.heartsome.cat.ts.test.ui.waits.IsProjectNotExist;
import net.heartsome.test.swtbot.utils.HSBot;
import net.heartsome.test.swtbot.waits.IsProjectD... | 2,145 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
ConfirmDialog.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/msgdialogs/ConfirmDialog.java | package net.heartsome.cat.ts.test.ui.msgdialogs;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotLabel;
... | 1,965 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
ConfirmProjectDeleteDialog.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/msgdialogs/ConfirmProjectDeleteDialog.java | package net.heartsome.cat.ts.test.ui.msgdialogs;
import static org.junit.Assert.assertTrue;
import java.text.MessageFormat;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import net.heartsome.test.utilities.common.FileUtil;
import org.eclipse.swtbot.swt.fi... | 3,075 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
ProgressDialog.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/msgdialogs/ProgressDialog.java | package net.heartsome.cat.ts.test.ui.msgdialogs;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotCheckBo... | 2,259 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
InformationDialog.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/msgdialogs/InformationDialog.java | package net.heartsome.cat.ts.test.ui.msgdialogs;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotLabel;
... | 3,018 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
InfoFileNotFound.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/msgdialogs/InfoFileNotFound.java | package net.heartsome.cat.ts.test.ui.msgdialogs;
import java.text.MessageFormat;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot... | 1,368 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
ProjectTreeItem.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/views/ProjectTreeItem.java | package net.heartsome.cat.ts.test.ui.views;
import net.heartsome.test.swtbot.utils.HSBot;
import net.heartsome.test.swtbot.waits.IsEditorOpened;
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotMenu;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTr... | 3,276 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
TmMatchesPanelView.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/views/TmMatchesPanelView.java | package net.heartsome.cat.ts.test.ui.views;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.cat.ts.test.ui.tasks.TsTasks;
import net.heartsome.test.swtbot.utils.HSBot;
import net.heartsome.test.swtbot.widgets.HsSWTBotStyledText;
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBot... | 3,233 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
DocumentPropertiesView.java | /FileExtraction/Java_unseen/heartsome_translationstudio8/test/net.heartsome.cat.ts.test.ui/src/net/heartsome/cat/ts/test/ui/views/DocumentPropertiesView.java | package net.heartsome.cat.ts.test.ui.views;
import net.heartsome.cat.ts.test.ui.constants.TsUIConstants;
import net.heartsome.test.swtbot.utils.HSBot;
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
im... | 4,189 | Java | .java | heartsome/translationstudio8 | 83 | 45 | 18 | 2014-06-03T17:56:15Z | 2020-10-13T06:46:15Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.