LibreOffice Module xmerge (master) 1
ConverterFactory.java
Go to the documentation of this file.
1/*
2 * This file is part of the LibreOffice project.
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 *
8 * This file incorporates work covered by the following license notice:
9 *
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 */
18
19package org.openoffice.xmerge;
20
23
35public class ConverterFactory {
36
50 public Convert getConverter(String mimeTypeIn, String mimeTypeOut) {
51
52 ConverterInfo foundInfo;
53 boolean toOffice;
54
55 toOffice = ConverterInfo.isValidOfficeType(mimeTypeOut);
56
57 // findConverterInfo expects the second parameter to be the
58 // destination MimeType
59 if (toOffice)
60 foundInfo = ConverterInfoMgr.findConverterInfo(mimeTypeIn, mimeTypeOut);
61 else
62 foundInfo = ConverterInfoMgr.findConverterInfo(mimeTypeOut, mimeTypeIn);
63
64 if (foundInfo != null)
65 return getConverter(foundInfo, toOffice);
66 else
67 return null;
68 }
69
80 public Convert getConverter(ConverterInfo ci, boolean toOffice) {
81
82 Convert myConvert = new Convert(ci, toOffice);
83 return myConvert;
84 }
85}
The Convert class manages a conversion from one mime-type to another.
Definition: Convert.java:38
Factory that provides access to Convert objects, which are used to do a conversion.
Convert getConverter(String mimeTypeIn, String mimeTypeOut)
Returns the Convert object that converts the specified device/office mime type conversion.
Convert getConverter(ConverterInfo ci, boolean toOffice)
Returns the Convert object that is described by the ConverterInfo parameter.
Manages the converter plug-ins that are currently active.
static ConverterInfo findConverterInfo(String deviceMime, String officeMime)
Returns the ConverterInfo object that supports the specified device/office mime type conversion.
Class for storing the information about a converter plug-in.
static boolean isValidOfficeType(String officeMime)
Returns true if the officeMime is a valid Office mime type.
Provides an interface for plug-in registration.
Provides general purpose utilities.
Provides interfaces for converting between two Document formats, and supports a "merge" interface for...
Definition: Convert.java:19