index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/StringInput.java | package org.eclipse.fx.code.editor;
public interface StringInput extends Input<String> {
public void updateData(int offset, int length, String replacement);
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/AnnotationModelTypeProvider.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.jface.text.source.IAnnotationModel;
public interface AnnotationModelTypeProvider extends InputDependentTypeProviderService<IAnnotationModel> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/CompletionProposal.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
public interface CompletionProposal {
public static final class TextSelection {
public final int offset;
public final int length;
public TextSelection(int offset, int lengt... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/DocumentPartitionerTypeProvider.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.jface.text.IDocumentPartitioner;
public interface DocumentPartitionerTypeProvider extends InputDependentTypeProviderService<IDocumentPartitioner> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/DocumentTypeProvider.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.jface.text.IDocument;
public interface DocumentTypeProvider extends InputDependentTypeProviderService<IDocument> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/EditorOpener.java | package org.eclipse.fx.code.editor.services;
public interface EditorOpener {
public boolean test(String uri);
public boolean openEditor(String uri);
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/EditorOpenerTypeProvider.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.fx.core.TypeProviderService;
public interface EditorOpenerTypeProvider extends TypeProviderService<String, EditorOpener> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/FileIconProvider.java | package org.eclipse.fx.code.editor.services;
import java.util.function.Predicate;
public interface FileIconProvider extends Predicate<String> {
public String getFileIconUri(String uri);
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/HoverInformationProvider.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.jface.text.IRegion;
public interface HoverInformationProvider {
public CharSequence getHoverInformation(String partitionType, IRegion region);
public IRegion getHoverRegion(String partitionType, int offset);
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/HoverInformationProviderTypeProvider.java | package org.eclipse.fx.code.editor.services;
public interface HoverInformationProviderTypeProvider extends InputDependentTypeProviderService<HoverInformationProvider> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/InputDependentTypeProviderService.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.core.TypeProviderService;
public interface InputDependentTypeProviderService<T> extends TypeProviderService<Input<?>, T> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/InputDocument.java | package org.eclipse.fx.code.editor.services;
import javax.annotation.PreDestroy;
import javax.inject.Inject;
import javax.inject.Named;
import org.eclipse.fx.code.editor.Constants;
import org.eclipse.fx.code.editor.StringInput;
import org.eclipse.fx.core.event.EventBus;
import org.eclipse.jface.text.Document;
import ... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/InputTypeProvider.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/ProposalComputer.java | package org.eclipse.fx.code.editor.services;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.jface.text.IDocument;
public interface ProposalComputer {
public class ProposalContext {
public final Input<?> input;
public final IDocum... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/ProposalComputerTypeProvider.java | package org.eclipse.fx.code.editor.services;
public interface ProposalComputerTypeProvider extends InputDependentTypeProviderService<ProposalComputer> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/StringInputAboutToChange.java | package org.eclipse.fx.code.editor.services;
import org.eclipse.fx.code.editor.StringInput;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.DocumentEvent;
public class StringInputAboutToChange {
private final DocumentEvent event;
private final StringInput input;
public StringInpu... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/URIProvider.java | package org.eclipse.fx.code.editor.services;
public interface URIProvider {
String getURI();
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/internal/DefaultFileIconProvider.java | package org.eclipse.fx.code.editor.services.internal;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.fx.code.editor.services.FileIconProvider;
import org.osgi.service.component.annotations.Component;
@Component
public class DefaultFileIconProvider implements FileIconProvider {
private final Map... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/internal/FileInputTypeProvider.java | package org.eclipse.fx.code.editor.services.internal;
import java.net.URI;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.code.editor.LocalSourceFileInput;
import org.eclipse.fx.code.editor.services.InputTypeProvider;
import org.osgi.service.component.annotations.Component;
@Component
public class Fi... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/internal/InputDocumentTypeProvider.java | package org.eclipse.fx.code.editor.services.internal;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.code.editor.StringInput;
import org.eclipse.fx.code.editor.services.DocumentTypeProvider;
import org.eclipse.fx.code.editor.services.InputDocument;
import org.eclipse.jface.text.IDocument;
import org.os... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/internal/NoHighlightDocumentTypePartitionerProvider.java | package org.eclipse.fx.code.editor.services.internal;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.code.editor.services.DocumentPartitionerTypeProvider;
import org.eclipse.jface.text.IDocumentPartitioner;
import org.eclipse.jface.text.rules.FastPartitioner;
import org.eclipse.jface.text.rules.RuleBas... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor/2.2.0/org/eclipse/fx/code/editor/services/internal/URLToPathAdapterProvider.java | package org.eclipse.fx.code.editor.services.internal;
import java.net.URI;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.eclipse.fx.core.adapter.AdapterProvider;
import org.eclipse.fx.core.adapter.AdapterService.ValueAccess;
import org.osgi.service.component.annotations.Component;
@Component
publ... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/FilesystemViewer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/OutlineViewer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/SimpleSourceTextEditorBuilder.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/TextEditor.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/AnnotationPresenterTypeProvider.java | package org.eclipse.fx.code.editor.fx.services;
import org.eclipse.fx.code.editor.services.InputDependentTypeProviderService;
import org.eclipse.fx.text.ui.source.AnnotationPresenter;
@SuppressWarnings("restriction")
public interface AnnotationPresenterTypeProvider extends InputDependentTypeProviderService<Annotation... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/CompletionProposalPresenter.java | package org.eclipse.fx.code.editor.fx.services;
import org.eclipse.fx.code.editor.services.CompletionProposal;
import org.eclipse.fx.text.ui.contentassist.ICompletionProposal;
@SuppressWarnings("restriction")
public interface CompletionProposalPresenter {
public ICompletionProposal createProposal(CompletionProposal ... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/CompletionProposalPresenterTypeProvider.java | package org.eclipse.fx.code.editor.fx.services;
import org.eclipse.fx.code.editor.services.InputDependentTypeProviderService;
@SuppressWarnings("restriction")
public interface CompletionProposalPresenterTypeProvider extends InputDependentTypeProviderService<CompletionProposalPresenter> {
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/EditorFontProvider.java | package org.eclipse.fx.code.editor.fx.services;
public interface EditorFontProvider {
public String getLabel();
public String getName();
}
|
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/FXCompletionProposal.java | package org.eclipse.fx.code.editor.fx.services;
import java.util.function.Supplier;
import org.eclipse.fx.code.editor.services.CompletionProposal;
import org.eclipse.fx.text.ui.contentassist.ICompletionProposal;
import org.eclipse.fx.ui.controls.styledtext.TextSelection;
import org.eclipse.jface.text.IDocument;
impo... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/Outline.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/OutlineTypeProviderService.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/PresentationReconcilerTypeProvider.java | package org.eclipse.fx.code.editor.fx.services;
import org.eclipse.fx.code.editor.services.InputDependentTypeProviderService;
import org.eclipse.fx.text.ui.presentation.PresentationReconciler;
@SuppressWarnings("restriction")
public interface PresentationReconcilerTypeProvider extends InputDependentTypeProviderServic... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/SourceViewerConfigurationTypeProvider.java | package org.eclipse.fx.code.editor.fx.services;
import org.eclipse.fx.code.editor.services.InputDependentTypeProviderService;
import org.eclipse.fx.text.ui.source.SourceViewerConfiguration;
@SuppressWarnings("restriction")
public interface SourceViewerConfigurationTypeProvider extends InputDependentTypeProviderServic... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/TextHoverMap.java | ///*******************************************************************************
// * Copyright (c) 2015 BestSolution.at and others.
// * All rights reserved. This program and the accompanying materials
// * are made available under the terms of the Eclipse Public License v1.0
// * which accompanies this distribution... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/TextHoverMapProvider.java | ///*******************************************************************************
// * Copyright (c) 2015 BestSolution.at and others.
// * All rights reserved. This program and the accompanying materials
// * are made available under the terms of the Eclipse Public License v1.0
// * which accompanies this distribution... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/internal/DefaultSourceViewerConfiguration.java | package org.eclipse.fx.code.editor.fx.services.internal;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.stream.Collectors;
import javax.inject.Inject;
import org.eclipse.e4.core.di.annotations.Optional;
import org.eclipse.fx.code.editor.Input;
im... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/internal/DefaultSourceViewerConfigurationTypeProvider.java | package org.eclipse.fx.code.editor.fx.services.internal;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.code.editor.fx.services.SourceViewerConfigurationTypeProvider;
import org.eclipse.fx.text.ui.source.SourceViewerConfiguration;
import org.osgi.service.component.annotations.Component;
@SuppressWarni... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/internal/NoHighlightPresentationReconcilerTypeProvider.java | package org.eclipse.fx.code.editor.fx.services.internal;
import org.eclipse.fx.code.editor.Input;
import org.eclipse.fx.code.editor.fx.services.PresentationReconcilerTypeProvider;
import org.eclipse.fx.text.ui.presentation.PresentationReconciler;
import org.eclipse.fx.text.ui.rules.DefaultDamagerRepairer;
import org.e... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services | java-sources/at/bestsolution/eclipse/org.eclipse.fx.code.editor.fx/2.2.0/org/eclipse/fx/code/editor/fx/services/internal/SystemEditorFontProvider.java | package org.eclipse.fx.code.editor.fx.services.internal;
import org.eclipse.fx.code.editor.fx.services.EditorFontProvider;
import org.osgi.service.component.annotations.Component;
@Component
public class SystemEditorFontProvider implements EditorFontProvider {
@Override
public String getLabel() {
return "Default... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Callback.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ExtensibleURLStreamHandlerFactory.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/FilesystemService.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/GenericObject.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/KeyValueStore.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Memento.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/OSGiUtil.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ObjectFactoryService.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ObjectSerializer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ProgressReporter.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/RankedObjectRegistry.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/RankedService.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ReflectionUtil.java | /*******************************************************************************
* Copyright (c) 2014 EM-SOFTWARE and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Resource.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/SimpleURI.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Status.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/StatusException.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/StatusImpl.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Subscription.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ThreadSynchronize.java | /*******************************************************************************
* Copyright (c) 2014 EM-SOFTWARE and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is avail... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/TypeProviderService.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/TypeTypeProviderService.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/URI.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/URLDynamicDataStreamHandler.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/URLResolver.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/URLStreamHandler.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/Util.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/ValueSerializer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter/Adapt.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter/Adaptable.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter/AdapterProvider.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter/AdapterService.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/adapter/internal/AdapterServiceImpl.java | /*******************************************************************************
* Copyright (c) 2013 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/command/CommandService.java | /*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/event/Event.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/event/EventBus.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/event/SimpleEventBus.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/event/Topic.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/DoubleRelationOperation.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/ExConsumer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/ExExecutor.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/ExFunction.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/ExRunnable.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/ExSupplier.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/function/IntRelationOperation.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/DefaultValueSerializer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/DynamicDataStreamHandler.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/FileSystemServiceImpl.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/JAXBObjectSerializer.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/JUtilLoggerFactory.java | /*******************************************************************************
* Copyright (c) 2012 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/JavaDSServiceProcessor.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/TplURLDynamicDataStreamHandler.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Component.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Component11.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Component12.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Implementation.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Properties.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Property.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
0 | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal | java-sources/at/bestsolution/eclipse/org.eclipse.fx.core/2.2.0/org/eclipse/fx/core/internal/sm/Provide.java | /*******************************************************************************
* Copyright (c) 2015 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.