rem stringlengths 0 477k | add stringlengths 0 313k | context stringlengths 6 599k |
|---|---|---|
tree.repaint(); | public void treeNodesChanged(TreeModelEvent e) { } | |
tree.repaint(); | public void treeNodesInserted(TreeModelEvent e) { } | |
tree.repaint(); | public void treeNodesRemoved(TreeModelEvent e) { } | |
tree.repaint(); | public void treeStructureChanged(TreeModelEvent e) { } | |
if (tree.isEditing()) tree.cancelEditing(); | public void valueChanged(TreeSelectionEvent event) { // FIXME: not implemented } | |
TreeModel mod = tree.getModel(); Object last = tree.getLeadSelectionPath().getLastPathComponent(); if (e.getActionCommand().equals("selectParent")) { TreePath path = new TreePath(getPathToRoot(last, 0)); Object p = getParent(mod.getRoot(), last); if (!mod.isLeaf(last) && tree.isExpanded(path)) tree.collapsePath(path)... | public void actionPerformed(ActionEvent e) { } | |
tree.requestFocusInWindow(false); | protected void installDefaults(JTree tree) { UIDefaults defaults = UIManager.getLookAndFeelDefaults(); tree.setFont(defaults.getFont("Tree.font")); tree.setForeground(defaults.getColor("Tree.foreground")); tree.setBackground(defaults.getColor("Tree.background")); tree.setOpaque(true); rightChildIndent = defaults... | |
cellEditor.addCellEditorListener(cellEditorListener); | protected void installListeners() { tree.addPropertyChangeListener(propertyChangeListener); tree.addFocusListener(focusListener); tree.addTreeSelectionListener(treeSelectionListener); tree.addMouseListener(mouseInputListener); tree.addKeyListener(keyListener); tree.addPropertyChangeListener(selectionModelPropert... | |
return getCellEditor() != null; | return isEditing; | public boolean isEditing(JTree tree) { return getCellEditor() != null; } |
if (!isLeaf) expanded = tree.isExpanded(curr); | int row = getRowForPath(tree, curr); | void paintNode(Graphics g, int x, int y, JTree tree, Object node, boolean isLeaf) { TreePath curr = new TreePath(getPathToRoot(node, 0)); boolean selected = tree.isPathSelected(curr); boolean expanded = false; boolean hasIcons = false; if (tree.isVisible(curr)) { TreeCellRend... |
Component c = dtcr.getTreeCellRendererComponent(tree, node, selected, expanded, isLeaf, 0, false); rendererPane.paintComponent(g, c, c.getParent(), getCellBounds(x, y, node)); | Component c = dtcr.getTreeCellRendererComponent(tree, node, selected, expanded, isLeaf, row, false); rendererPane.paintComponent(g, c, c.getParent(), getCellBounds(x, y, node)); } | void paintNode(Graphics g, int x, int y, JTree tree, Object node, boolean isLeaf) { TreePath curr = new TreePath(getPathToRoot(node, 0)); boolean selected = tree.isPathSelected(curr); boolean expanded = false; boolean hasIcons = false; if (tree.isVisible(curr)) { TreeCellRend... |
if (tree.isPathSelected(path)) tree.removeSelectionPath(path); else if (tree.getSelectionModel().getSelectionMode() == TreeSelectionModel. DISCONTIGUOUS_TREE_SELECTION) | if (tree.getSelectionModel().getSelectionMode() == TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION) | void selectPath(JTree tree, TreePath path) { if (path != null) { if (tree.isPathSelected(path)) tree.removeSelectionPath(path); else if (tree.getSelectionModel().getSelectionMode() == TreeSelectionModel. DISCONTIGUOUS_TREE_SELECTION) { tree.addSelec... |
if (ed == null) updateCellEditor(); if(ed != null && ed.isCellEditable(event) && ed.shouldSelectCell(event)) | if (ed != null && ed.shouldSelectCell(event) && ed.isCellEditable(event)) | protected boolean startEditing(TreePath path, MouseEvent event) { int x; int y; if (event == null) { Rectangle bounds = getPathBounds(tree, path); x = bounds.x; y = bounds.y; } else { x = event.getX(); y = event.getY(); } TreeCellEditor ed = get... |
boolean isLeaf = tree.getModel().isLeaf(val); boolean expanded = tree.isExpanded(editingPath); editingComponent = ed.getTreeCellEditorComponent( tree, val, true, expanded, isLeaf, editingRow); | protected boolean startEditing(TreePath path, MouseEvent event) { int x; int y; if (event == null) { Rectangle bounds = getPathBounds(tree, path); x = bounds.x; y = bounds.y; } else { x = event.getX(); y = event.getY(); } TreeCellEditor ed = get... | |
boolean expanded = tree.isExpanded(editingPath); isEditing = true; editingComponent = ed.getTreeCellEditorComponent(tree, val, true, expanded, isLeaf(editingRow), editingRow); editingComponent.getParent().setVisible(true); editingComponent.getParent().validate(); tree.add(editingComponent.getParent()); editingComponent... | protected boolean startEditing(TreePath path, MouseEvent event) { int x; int y; if (event == null) { Rectangle bounds = getPathBounds(tree, path); x = bounds.x; y = bounds.y; } else { x = event.getX(); y = event.getY(); } TreeCellEditor ed = get... | |
{ completeEditing(); return getCellEditor().stopCellEditing(); } return true; | completeEditing(true, false, false); return !isEditing(tree); | public boolean stopEditing(JTree tree) { if (isEditing(tree)) { completeEditing(); return getCellEditor().stopCellEditing(); } return true; } |
cellEditor = createDefaultCellEditor(); | setCellEditor(createDefaultCellEditor()); createdCellEditor = true; | protected void updateCellEditor() { if (tree.isEditable() && cellEditor == null) cellEditor = createDefaultCellEditor(); } |
return getPreferredSize(comp); | int maxTotalColumnWidth = 0; for (int i = 0; i < table.getColumnCount(); i++) maxTotalColumnWidth += table.getColumnModel().getColumn(i).getMaxWidth(); if (maxTotalColumnWidth == 0 || table.getRowCount() == 0) return null; return new Dimension(maxTotalColumnWidth, table.getRowCount()*table.getRowHeight()); | public Dimension getMaximumSize(JComponent comp) { return getPreferredSize(comp); } |
return getPreferredSize(comp); | int minTotalColumnWidth = 0; for (int i = 0; i < table.getColumnCount(); i++) minTotalColumnWidth += table.getColumnModel().getColumn(i).getMinWidth(); if (minTotalColumnWidth == 0 || table.getRowCount() == 0) return null; return new Dimension(minTotalColumnWidth, table.getRowCount()*table.getRowHeight()); | public Dimension getMinimumSize(JComponent comp) { return getPreferredSize(comp); } |
setLeadSelectionPath(null); | public void clearSelection() { selectionModel.clearSelection(); } | |
public IPv4ProtocolAddressInfo(IPv4Address address, IPv4Address subnetMask) { add(address, subnetMask); this.defaultAddress = address; | public IPv4ProtocolAddressInfo(IPv4Address address, IPv4Address mask) { this.defaultAddress = add(address, mask); | public IPv4ProtocolAddressInfo(IPv4Address address, IPv4Address subnetMask) { add(address, subnetMask); this.defaultAddress = address; } |
public synchronized void add(IPv4Address address, IPv4Address subnetMask) { final IPv4AddressAndMask aam = new IPv4AddressAndMask(address, subnetMask); | public synchronized IPv4IfAddress add(IPv4Address address, IPv4Address mask) { | public synchronized void add(IPv4Address address, IPv4Address subnetMask) { final IPv4AddressAndMask aam = new IPv4AddressAndMask(address, subnetMask); addresses.remove(address); addresses.put(address, aam); } |
addresses.put(address, aam); | IPv4IfAddress ifAddress = new IPv4IfAddress(address, mask); addresses.put(address,ifAddress); return ifAddress; | public synchronized void add(IPv4Address address, IPv4Address subnetMask) { final IPv4AddressAndMask aam = new IPv4AddressAndMask(address, subnetMask); addresses.remove(address); addresses.put(address, aam); } |
return defaultAddress; | return defaultAddress.getAddress(); | public ProtocolAddress getDefaultAddress() { return defaultAddress; } |
final IPv4AddressAndMask aam = (IPv4AddressAndMask)addresses.get(address); if (aam != null) { return aam.getSubnetMask(); } else { return DEFAULT_SUBNET_MASK; } | IPv4IfAddress ifAddr = (IPv4IfAddress)addresses.get(address); return ifAddr.getSubnetMask(); | public IPv4Address getSubnetMask(IPv4Address address) { final IPv4AddressAndMask aam = (IPv4AddressAndMask)addresses.get(address); if (aam != null) { return aam.getSubnetMask(); } else { return DEFAULT_SUBNET_MASK; } } |
public void setDefaultAddress(IPv4Address address) { defaultAddress = address; | public void setDefaultAddress(IPv4Address address, IPv4Address netmask) { defaultAddress = new IPv4IfAddress(address, netmask); | public void setDefaultAddress(IPv4Address address) { defaultAddress = address; } |
drawLine(0, g, 0, 0); | super.paint(g, s); | public void paint(Graphics g, Shape s) { drawLine(0, g, 0, 0); } |
if (rc != 0) { | if ((rc != 0) && (out.size() > 0)) { | protected Flags runDiff(SourceFile vmFile, SourceFile cpFile, String diffFileName, Map<String, String> packageDiffs) throws IOException, InterruptedException { final String[] cmd = { "diff", //"-b", // Ignore white space change "-E", // Ignore changes due ... |
public void childrenAdded(BeanContextMembershipEvent event); | void childrenAdded(BeanContextMembershipEvent event); | public void childrenAdded(BeanContextMembershipEvent event); |
public void childrenRemoved(BeanContextMembershipEvent event); | void childrenRemoved(BeanContextMembershipEvent event); | public void childrenRemoved(BeanContextMembershipEvent event); |
if (type.equals("CDATA") || type == null) | if (type == null || type.equals("CDATA")) | private void parseAttribute(String name) throws Exception { String aname; String type; String value; int flags = LIT_ATTRIBUTE | LIT_ENTITY_REF; // Read the attribute name. aname = readNmtoken(true); type = getAttributeType(name, aname); // Parse '=' parseEq(); // Read the value, normalizing whitespac... |
initial_references.put("PICurrent", ic_current); | public ORB_1_4() { super(); try { rootPOA = new gnuPOA(null, "RootPOA", null, policySets.rootPoa(), this); } catch (InvalidPolicy ex) { // Invalid default policy set. InternalError ierr = new InternalError(); ierr.initCause(ex); throw ierr; } initial... | |
if (selectedFile != null) return new File[] { selectedFile }; return null; | public File[] getSelectedFiles() { return selectedFiles; } | |
public void setEditable(boolean editable) | public void setEditable(boolean newValue) | public void setEditable(boolean editable) { firePropertyChange("editable", this.editable, editable); this.editable = editable; } |
firePropertyChange("editable", this.editable, editable); this.editable = editable; | if (editable == newValue) return; boolean oldValue = editable; editable = newValue; firePropertyChange("editable", oldValue, newValue); | public void setEditable(boolean editable) { firePropertyChange("editable", this.editable, editable); this.editable = editable; } |
b.setInputMap(JComponent.WHEN_FOCUSED, (InputMap) defaults.get("Button.focusInputMap")); | protected void installDefaults(AbstractButton b) { UIDefaults defaults = UIManager.getLookAndFeelDefaults(); b.setForeground(defaults.getColor("Button.foreground")); b.setBackground(defaults.getColor("Button.background")); b.setMargin(defaults.getInsets("Button.margin")); b.setBorder(defaults.getBorde... | |
listener.installKeyboardActions(b); | protected void installKeyboardActions(AbstractButton b) { } | |
Graphics2D g2 = (Graphics2D) g; Stroke saved_stroke = g2.getStroke(); Color saved_color = g2.getColor(); float dashes[] = new float[] {1.0f, 1.0f}; BasicStroke s = new BasicStroke(1.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER, 10, dashes, 0.0f); g2.setStroke(s); g2.setColor(Color.BLACK); g2.drawRect(vr.x + 2, vr... | Color saved_color = g.getColor(); g.setColor(focusColor); Rectangle focusRect = ir.union(tr); g.drawRect(focusRect.x, focusRect.y, focusRect.width, focusRect.height); g.setColor(saved_color); | protected void paintFocus(Graphics g, AbstractButton b, Rectangle vr, Rectangle tr, Rectangle ir) { if (b.hasFocus() && b.isFocusPainted()) { Graphics2D g2 = (Graphics2D) g; Stroke saved_stroke = g2.getStroke(); Color saved_color = g2.getColor(); float d... |
listener.uninstallKeyboardActions(b); | protected void uninstallKeyboardActions(AbstractButton b) { } | |
throws NotImplementedException | protected void acceptDrag(int dragOperation) throws NotImplementedException { // FIXME: implement this } | |
if (dtcp != null) dtcp.acceptDrag(dragOperation); | protected void acceptDrag(int dragOperation) throws NotImplementedException { // FIXME: implement this } | |
throws NotImplementedException | protected void acceptDrop(int dropOperation) throws NotImplementedException { // FIXME: implement this } | |
if (dtcp != null) dtcp.acceptDrop(dropOperation); | protected void acceptDrop(int dropOperation) throws NotImplementedException { // FIXME: implement this } | |
public void addNotify(java.awt.dnd.peer.DropTargetContextPeer dtcp) | public void addNotify(DropTargetContextPeer dtcp) | public void addNotify(java.awt.dnd.peer.DropTargetContextPeer dtcp) { this.dtcp = dtcp; } |
throws NotImplementedException | public void dropComplete(boolean success) throws NotImplementedException { // FIXME: implement this } | |
if (dtcp != null) dtcp.dropComplete(success); | public void dropComplete(boolean success) throws NotImplementedException { // FIXME: implement this } | |
throws NotImplementedException | protected DataFlavor[] getCurrentDataFlavors() throws NotImplementedException { // FIXME: implement this return null; } | |
if (dtcp != null) dtcp.getTransferDataFlavors(); | protected DataFlavor[] getCurrentDataFlavors() throws NotImplementedException { // FIXME: implement this return null; } | |
throws InvalidDnDOperationException, NotImplementedException | throws InvalidDnDOperationException | protected Transferable getTransferable() throws InvalidDnDOperationException, NotImplementedException { // FIXME: implement this return null; } |
if (dtcp != null) return dtcp.getTransferable(); | protected Transferable getTransferable() throws InvalidDnDOperationException, NotImplementedException { // FIXME: implement this return null; } | |
throws NotImplementedException | protected void rejectDrag() throws NotImplementedException { // FIXME: implement this } | |
if (dtcp != null) dtcp.rejectDrag(); | protected void rejectDrag() throws NotImplementedException { // FIXME: implement this } | |
throws NotImplementedException | protected void rejectDrop() throws NotImplementedException { // FIXME: implement this } | |
if (dtcp != null) dtcp.rejectDrop(); | protected void rejectDrop() throws NotImplementedException { // FIXME: implement this } | |
jComponent.reshape(x, y, width, height); | jComponent.setBounds(x, y, width, height); | public final void reshape(int x, int y, int width, int height) { final int oldWidth = jComponent.getWidth(); final int oldHeight = jComponent.getHeight(); isReshapeInProgress = true; jComponent.reshape(x, y, width, height); isReshapeInProgress = false; fireComponentEvent(oldWi... |
else { position(limit()); limit(capacity()); } | public ByteBuffer compact() { int pos = position(); if (pos > 0) { int count = remaining(); // Call shiftDown method optimized for direct buffers. VMDirectByteBuffer.shiftDown(address, 0, pos, count); position(count); limit(capacity()); } return this; } | |
return proxyInstance.toString(); | return "Proxy stub:"+ref.remoteToString(); | public Object invoke(Object proxyInstance, Method method, Object[] parameters) throws Throwable { if (!(proxyInstance instanceof Remote)) { String name = proxyInstance == null ? "null" : proxyInstance.getClass().getName(); throw new IllegalAccessEx... |
throws JdwpException | private void _enforceSuspendPolicy (byte suspendPolicy) { switch (suspendPolicy) { case EventRequest.SUSPEND_NONE: // do nothing break; case EventRequest.SUSPEND_THREAD: VMVirtualMachine.suspendThread (this); break; case EventRequest.SUSPEND_ALL: VMVirtualMachine.suspendAllThreads (); break; ... | |
jdwp._enforceSuspendPolicy (request.getSuspendPolicy ()); } catch (Exception e) { System.out.println ("Jdwp.notify: caught exception: " + e); } } | public static void notify (Event event) { Jdwp jdwp = getDefault (); if (jdwp != null) { EventManager em = EventManager.getDefault (); EventRequest request = em.getEventRequest (event); if (request != null) sendEvent (request, event); } } | |
try { | public static void sendEvent (EventRequest request, Event event) { Jdwp jdwp = getDefault (); if (jdwp != null) { try { // !! May need to implement send queue? synchronized (jdwp._connection) { jdwp._connection.sendEvent (request, event); } // Follow suspend policy jdwp... | |
jdwp._enforceSuspendPolicy (request.getSuspendPolicy ()); } catch (IOException ie) { System.out.println ("Jdwp.notify: caught exception: " + ie); } | public static void sendEvent (EventRequest request, Event event) { Jdwp jdwp = getDefault (); if (jdwp != null) { try { // !! May need to implement send queue? synchronized (jdwp._connection) { jdwp._connection.sendEvent (request, event); } // Follow suspend policy jdwp... | |
timezones0.put("America/Cambridge_Bay", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Winnipeg", tz); | timezones0.put("America/Rankin_Inlet", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.OCTOBER, 9, -Calendar.SUNDAY, 0 * 3600, Calendar.MARCH, 9, -Calendar.SUNDAY, 0 * 3600); | Calendar.OCTOBER, 2, Calendar.SATURDAY, 23000 * 3600, Calendar.MARCH, 2, Calendar.SATURDAY, 22000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("America/Iqaluit", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Pangnirtung", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Porto_Acre", tz); timezones0.put("America/Rankin_Inlet", tz); | timezones0.put("America/Rio_Branco", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.OCTOBER, 1, Calendar.SUNDAY, 0 * 3600, Calendar.FEBRUARY, -1, Calendar.SUNDAY, 0 * 3600); | Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, Calendar.MARCH, 2, Calendar.SUNDAY, 0 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
(-4000 * 3600, "America/Cuiaba", Calendar.OCTOBER, 2, Calendar.SUNDAY, 0 * 3600, | (-4000 * 3600, "America/Campo_Grande", Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
(-4000 * 3600, "America/Santiago", | (-4000 * 3600, "Antarctica/Palmer", | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("America/Santiago", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
Calendar.SEPTEMBER, 2, Calendar.SUNDAY, 0 * 3600, Calendar.APRIL, 16, -Calendar.SUNDAY, 0 * 3600); | Calendar.SEPTEMBER, 1, Calendar.SUNDAY, 2000 * 3600, Calendar.APRIL, 3, Calendar.SUNDAY, 2000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
(-3000 * 3600, "America/Araguaina", Calendar.OCTOBER, 2, Calendar.SUNDAY, 0 * 3600, | (-3000 * 3600, "America/Godthab", Calendar.MARCH, 30, -Calendar.SATURDAY, 23000 * 3600, Calendar.OCTOBER, 30, -Calendar.SATURDAY, 23000 * 3600); timezones0.put("America/Godthab", tz); tz = new SimpleTimeZone (-3000 * 3600, "America/Miquelon", Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, Calendar.OCTOBER, -1, Calend... | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("America/Araguaina", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Buenos_Aires", tz); timezones0.put("America/Catamarca", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Cordoba", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Jujuy", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Mendoza", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("America/Rosario", tz); tz = new SimpleTimeZone (-3000 * 3600, "America/Godthab", Calendar.MARCH, 30, -Calendar.SATURDAY, 22000 * 3600, Calendar.OCTOBER, 30, -Calendar.SATURDAY, 22000 * 3600); timezones0.put("America/Godthab", tz); tz = new SimpleTimeZone (-3000 * 3600, "America/Miquelon", Calendar.APRIL... | timezones0.put("Antarctica/Rothera", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.MARCH, -1, Calendar.SUNDAY, 0 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); | Calendar.MARCH, -1, Calendar.SUNDAY, 1000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 1000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Atlantic/Jan_Mayen", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
Calendar.MARCH, -1, Calendar.SUNDAY, 1000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 1000 * 3600); | Calendar.MARCH, -1, Calendar.SUNDAY, 2000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.MARCH, -1, Calendar.SUNDAY, 2000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); | Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("CEST", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
Calendar.APRIL, -1, Calendar.FRIDAY, 0 * 3600, Calendar.SEPTEMBER, -1, Calendar.THURSDAY, 23000 * 3600); | Calendar.APRIL, -1, Calendar.FRIDAY, 1000 * 3600, Calendar.SEPTEMBER, -1, Calendar.THURSDAY, 24000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Europe/Riga", tz); timezones0.put("Europe/Tallinn", tz); timezones0.put("Europe/Vilnius", tz); | timezones0.put("Asia/Jerusalem", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.MARCH, -1, Calendar.THURSDAY, 0 * 3600, Calendar.SEPTEMBER, -1, Calendar.THURSDAY, 0 * 3600); | Calendar.MARCH, -1, Calendar.THURSDAY, 1000 * 3600, Calendar.SEPTEMBER, -1, Calendar.THURSDAY, 1000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
(2000 * 3600, "Asia/Jerusalem", Calendar.APRIL, 1, 0, 1000 * 3600, Calendar.OCTOBER, 1, 0, 1000 * 3600); timezones0.put("Asia/Jerusalem", tz); tz = new SimpleTimeZone | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); | Calendar.MARCH, -1, Calendar.SUNDAY, 4000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 4000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Calendar.APRIL, 1, 0, 3000 * 3600, Calendar.OCTOBER, 1, 0, 3000 * 3600); | Calendar.APRIL, 1, 0, 4000 * 3600, Calendar.OCTOBER, 1, 0, 4000 * 3600); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
(3000 * 3600, "Europe/Moscow", Calendar.MARCH, -1, Calendar.SUNDAY, 2000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); | (3000 * 3600, "Asia/Tbilisi", Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); timezones0.put("Asia/Tbilisi", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Europe/Tiraspol", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
(4000 * 3600, "Asia/Aqtau", Calendar.MARCH, -1, Calendar.SUNDAY, 0 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); timezones0.put("Asia/Aqtau", tz); timezones0.put("Asia/Tbilisi", tz); tz = new SimpleTimeZone | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
(5000 * 3600, "Asia/Aqtobe", Calendar.MARCH, -1, Calendar.SUNDAY, 0 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); timezones0.put("Asia/Aqtobe", tz); tz = new SimpleTimeZone | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("Indian/Chagos", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
tz = new SimpleTimeZone (6000 * 3600, "Asia/Almaty", Calendar.MARCH, -1, Calendar.SUNDAY, 0 * 3600, Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); timezones0.put("Asia/Almaty", tz); | timezones0.put("Indian/Chagos", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Asia/Hovd", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... | |
timezones0.put("Asia/Chungking", tz); | timezones0.put("Asia/Chongqing", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Asia/Macao", tz); | timezones0.put("Asia/Macau", tz); timezones0.put("Asia/Makassar", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
timezones0.put("Asia/Ujung_Pandang", tz); timezones0.put("Asia/Ulaanbaatar", tz); | static synchronized HashMap timezones() { if (timezones0 == null) { HashMap timezones = new HashMap(); timezones0 = timezones; TimeZone tz; // Automatically generated by scripts/timezones.pl // XXX - Should we read this data from a file? tz = new SimpleTimeZone(-11000 * 3600, "MIT"); timezones0.put("MIT... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.