1166818Scognet/* xgettext Java backend.
2161592Scognet   Copyright (C) 2001-2003 Free Software Foundation, Inc.
3161592Scognet   Written by Tommy Johansson <tommy.johansson@kanalen.org>, 2001.
4161592Scognet
5161592Scognet   This program is free software; you can redistribute it and/or modify
6161592Scognet   it under the terms of the GNU General Public License as published by
7161592Scognet   the Free Software Foundation; either version 2, or (at your option)
8161592Scognet   any later version.
9161592Scognet
10161592Scognet   This program is distributed in the hope that it will be useful,
11161592Scognet   but WITHOUT ANY WARRANTY; without even the implied warranty of
12161592Scognet   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13161592Scognet   GNU General Public License for more details.
14161592Scognet
15161592Scognet   You should have received a copy of the GNU General Public License
16161592Scognet   along with this program; if not, write to the Free Software Foundation,
17161592Scognet   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18161592Scognet
19161592Scognet#define EXTENSIONS_JAVA \
20161592Scognet  { "java",    "Java"  },						\
21161592Scognet
22161592Scognet#define SCANNERS_JAVA \
23191954Skuriyama  { "Java",		extract_java,					\
24191954Skuriyama			&flag_table_java, &formatstring_java, NULL },	\
25161592Scognet
26161592Scognetextern void extract_java (FILE *fp, const char *real_filename,
27191954Skuriyama			  const char *logical_filename,
28161592Scognet			  flag_context_list_table_ty *flag_table,
29186525Sbz			  msgdomain_list_ty *mdlp);
30161592Scognet
31161592Scognetextern void x_java_keyword (const char *keyword);
32161592Scognetextern void x_java_extract_all (void);
33191954Skuriyama
34191954Skuriyamaextern void init_flag_table_java (void);
35161592Scognet