Diff
checker
Texto
Texto
Imagens
Documentos
Excel
Pastas
Legal
Enterprise
Aplicativo para desktop
Preços
Fazer login
Baixar o Diffchecker Desktop
Comparar texto
Encontre a diferença entre dois arquivos de texto
Ferramentas
Histórico
Editor live
Recolher inalteradas
Sem quebra de linha
Layout
Dividido
Unificado
Nível de detalhe
Inteligente
Palavra
Caractere
Realce de sintaxe
Escolher sintaxe
Ignorar
Transformar texto
Ir à primeira mudança
Editar entrada
Diffchecker Desktop
A maneira mais segura de usar o Diffchecker. Obtenha o aplicativo Diffchecker Desktop: seus diffs nunca saem do seu computador!
Obter Desktop
Untitled diff
Criado
há 8 anos
O diff nunca expira
Limpar
Exportar
Compartilhar
Explicar
23 remoções
Linhas
Total
Removido
Caracteres
Total
Removido
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
47 linhas
Copiar tudo
10 adições
Linhas
Total
Adicionado
Caracteres
Total
Adicionado
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
33 linhas
Copiar tudo
/*
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* the License. You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* See the License for the specific language governing permissions and
* limitations under the License.
* limitations under the License.
*/
*/
package org.apache.any23.cli.flows;
package org.apache.any23.cli.flows;
Copiar
Copiado
Copiar
Copiado
import org.apache.any23.
extractor.ExtractorDescription;
import org.apache.any23.
writer.DelegatingWriterFactory;
import org.apache.any23.extractor.ExtractorFactory;
import org.apache.any23.
writer.TripleHandler;
import org.apache.any23.extractor.SimpleExtractorFactory;
import org.apache.any23.
rdf.Prefixes;
import java.util.Arrays;
public class PeopleExtractorFactory extends SimpleExtractorFactory<PeopleExtractor>
implements ExtractorFactory<PeopleExtractor> {
public static final String NAME = "people";
public static final Prefixes prefixes = null;
Copiar
Copiado
Copiar
Copiado
private static final ExtractorDescription descriptionInstance = new
PeopleExtractorFactory
();
public class
PeopleExtractorFactory
implements DelegatingWriterFactory {
Copiar
Copiado
Copiar
Copiado
public
PeopleExtractorFactory
() {
@Override
super(NAME, prefixes, Arrays.asList("*/*"), null)
;
public
String getIdentifier
() {
return "people"
;
}
}
@Override
@Override
Copiar
Copiado
Copiar
Copiado
public
PeopleExtractor createExtractor(
) {
public
TripleHandler getTripleWriter(TripleHandler delegate
) {
return new PeopleExtractor(
);
return new PeopleExtractor(
delegate);
}
public static ExtractorDescription getDescriptionInstance() {
return descriptionInstance;
}
}
}
}
Diferenças salvas
Texto original
Abrir arquivo
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.any23.cli.flows; import org.apache.any23.extractor.ExtractorDescription; import org.apache.any23.extractor.ExtractorFactory; import org.apache.any23.extractor.SimpleExtractorFactory; import org.apache.any23.rdf.Prefixes; import java.util.Arrays; public class PeopleExtractorFactory extends SimpleExtractorFactory<PeopleExtractor> implements ExtractorFactory<PeopleExtractor> { public static final String NAME = "people"; public static final Prefixes prefixes = null; private static final ExtractorDescription descriptionInstance = new PeopleExtractorFactory(); public PeopleExtractorFactory() { super(NAME, prefixes, Arrays.asList("*/*"), null); } @Override public PeopleExtractor createExtractor() { return new PeopleExtractor(); } public static ExtractorDescription getDescriptionInstance() { return descriptionInstance; } }
Texto alterado
Abrir arquivo
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.any23.cli.flows; import org.apache.any23.writer.DelegatingWriterFactory; import org.apache.any23.writer.TripleHandler; public class PeopleExtractorFactory implements DelegatingWriterFactory { @Override public String getIdentifier() { return "people"; } @Override public TripleHandler getTripleWriter(TripleHandler delegate) { return new PeopleExtractor(delegate); } }
Encontrar Diferença